Reputation: 13
I've been building a development site "http://webdesignsalemoregon.com/lpr-settings-1/" and the jQuery code works just fine.
I cloned a clients site and am trying to get it on the new format "http://webdesignsalemoregon.com/harolds-lpr/"
but it seems like the jQuery code isn't working? It seems to be loaded just fine in the header? :/
EDIT
the custom jquery file is "custom.js"
Upvotes: 0
Views: 106
Reputation: 227200
You need to make sure jQuery is loaded before your scripts. Looking at the site, it seems your scripts are being loaded before jQuery is, so you're getting "jQuery is not defined" in the console.
Upvotes: 2