I'm trying to make some hover actions using jQuery, but I think the selector isn't working. Here's the HTML:
<div id="footer">
<ul>
<li><a href="#">Start a Something</a></li>
<li><a href="#">Send a Gift</a></li>
<li><a href="#">How It Works</a></li>
<li><a href="#">Secure Service</a></li>
<li><a href="#">About Company</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
</ul>
<ul>
<li>© 2012 Company</li>
<li><a href="#">Terms of Use and Privacy</a></li>
</ul>
</div>
And here's the jQuery:
$('#footer ul li').mouseover(function(){
$(this).animate({
color: "white"
}, 200);
}).mouseout(function(){
$(this).animate({
color: "#bcbdbd"
}, 200);
});
What selector should I be using?