$(function() { $('div#how-does li a').hover( function() { $(this).stop().toggleClass('large-circle'); } ); });
stop()
stop(true, true)
I have this:
But when I rollover my link several times back and forth, the class still sticks. I thought adding fixed that? I also added , and remains the same. Thoughts?
i think you need to add 2 class names. like this example from jquery documentation:
$('#foo').toggleClass(className, addOrRemove)
so you need to add something like
$(this).toggleClass('large-circle', 'normalstate');
and style the new class
I just tried, but it does do the same thing, although your response would make sense. Weird?
$('div#how-does li a').hover(
maybe the UL you missed might be the problems
over here it works:
http://jsfiddle.net/f5hqk/
ps, I forgot you dont need my previous example for a hover state :)