Jquery animation only working on the home page
Permalink
Hello! So in my script.js file within my theme folder I have this basic code being called on document ready:
This works on the homepage, but for some reason when I leave home and go anywhere else it doesn't work =/ Any quick suggestions?
$('#subnav-list li').mouseenter(function(){ $(this).animate({backgroundColor:"#2fbfe9"}, 250); }); $('#subnav-list li').mouseleave(function(){ $(this).animate({backgroundColor:"#10456b"}, 250); });
This works on the homepage, but for some reason when I leave home and go anywhere else it doesn't work =/ Any quick suggestions?