jQuery Hover Problem - Hover Triggers on Mouse Move
- by majman
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!