jQuery Hover Problem - Hover Triggers on Mouse Move
Posted
by majman
on Stack Overflow
See other posts from Stack Overflow
or by majman
Published on 2009-11-21T23:55:38Z
Indexed on
2010/03/13
4:07 UTC
Read the original article
Hit count: 504
For reference: http://www.favsav.com/-public
You'll notice that if you hover over a list item, the meta data slides up. If you leave your mouse still on top, and then move a smidgen to the left or right, it triggers again. There's some other silliness going on if you move around
The code is pretty simple:
$('li.post').hover(function(){
$(this).find('.meta').slideDown('fast');
}, function(){
$(this).find('.meta').slideUp('fast');
})
Any idea why things are behaving like this?
This seems to only be happening in Firefox (i'm using 3.5.5 on OSX)
UPDATE After restarting Firefox, all is well! Thanks for the input!
© Stack Overflow or respective owner