calling jquery file breaking other site plugin appearance
-
Hi, I need to call a jQuery java script file on my arras theme for a menu Im installing. the file is called ‘jquery-1.3.2.js’but for some reason calling it is breaking some of the other plugins I have running on my site such as Tabber widgets. can someone please let me know how to call that jquery file and then write the following code whilstavoiding the conflict, cheers in advance.
need to call ‘jquery-1.3.2.js
javascrip:
<script type="text/javascript"> $(function() { var d=300; $('#navigation a').each(function(){ $(this).stop().animate({ 'marginTop':'-80px' },d+=150); }); $('#navigation > li').hover( function () { $('a',$(this)).stop().animate({ 'marginTop':'-2px' },200); }, function () { $('a',$(this)).stop().animate({ 'marginTop':'-80px' },200); } ); }); </script>
the site is zatheka.com, really appreciate some help
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘calling jquery file breaking other site plugin appearance’ is closed to new replies.