Hi, Im new to jquery.
I have a .hover that is applied to all ul li a
$("ul li a").hover
Question: How can I apply the .hover to a specific class or id?
I tried something like this but it didn't work for me:
$("#test ul li a").hover
$("test ul li a").hover
Thanks

