I have the following structure:
<div class="some-class"><img src="" alt="" /></div>
<div class="other-class"><span>Some text</span></div>
In jQuery when you hover over .some-class (thumbnail) the div below moves from left: ~$(this).width() to left: 0; (where $(this) is img) so it slides over thumbnail. It works very well except when text arrives there where cursor is the animation breaks (hover stops working on image). How to prevent that?
It's AJAX with complicated javascript mess so I'd rather not change HTML structure.
Link to work in progrss (error happens especially when hovering images from top or bottom): http://themes.devatic.com/theagency/

mouseenterandmouseleavehandlers. – Viruzzo Dec 21 '11 at 13:51<div><span/></div>structure in the.some-classdiv. Hide it out with CSS, and bind your hover event to the.some-classdiv. That way if I hover over the text I'm still in the.some-classdiv. – Chad Dec 21 '11 at 13:52