I have this script:
$("#teaser ul.buttons li").mouseover(function() { $("a",this).animate({ left: '0' },350); }).mouseout(function() { $("a",this).animate({ left: '-11px' },350); });
But when I now hang over element a. The mouse and mouse continue. How can I change this script. This is when I find element a. This is the start of the mouse when I find the item.
jquery mouseover mouseout
Mike
source share