The site has an existing rotating header banner and I'm trying to add some CSS-tricks to the body .
When anything is added, rotating banner breaks. Here is my test page to see the current rotation banner in action please see the home page. I have tried to close different versions of multiple jQuery libraries referenced in the head, but no success has been found.
This is actually a simple solution, before your actual jquery javascript file you have your jquery.js
file (which is the header rotator code).
Currently you have:
& lt; Script src = "js / jquery.js" type = "text / javascript" & gt; & Lt; / Script & gt; & Lt; Script type = "text / javascript" src = "http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" & gt; & Lt; / Script & gt;
Swap both of them and you receive:
& lt; Script type = "text / javascript" src = "http://ajax.googleapis.com /ajax/libs/jquery/1/jquery.min.js"></script> & Lt; Script src = "js / jquery.js" type = "text / javascript" & gt; & Lt; / Script & gt;
This should do the trick.
Comments
Post a Comment