I have used the code for previous sites and it worked perfectly but I’ve just added it to a new site I’m working on and can’t understand why the code is not working for this site.
If anyone can see what I’ve missed I’d be really grateful.
Yes I did this quite a few times already but no luck. I’m not sure why it’s not publishing. Maybe I need to re-do it in a fresh document and try publishing from there?
Ok great thanks so much that’s working now but I’m not sure then why the other sites are working as I didn’t add this code to those ones?
Here’s an example of another site which works but i can’t figure out where I would have put the call to jQuery. I can’t remember adding it and there is no jQuery code in the HTML markup.
You have to be careful of this because you can easily end up adding js libraries more than once.
WowSlider relies on jQuery to provide its effects and once that library is loaded it is there for other scripts to utilise - so if you add another call to jQuery you are adding another couple of hundred kb of code unnecessarily.
And be aware of the potential pitfalls of using different javascript libraries - there may be conflicts.
I just had to solve this problem for a client, and documented it here:
Walter
On Oct 4, 2014, at 7:21 AM, DeltaDave email@hidden wrote:
You have to be careful of this because you can easily end up adding js libraries more than once.
WowSlider relies on jQuery to provide its effects and once that library is loaded it is there for other scripts to utilise - so if you add another call to jQuery you are adding another couple of hundred kb of code unnecessarily.
And be aware of the potential pitfalls of using different javascript libraries - there may be conflicts.