Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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/

share|improve this question
Can you provide a link to your current implementation? That would make finding a solution to your problem a lot easier. – techfoobar Dec 21 '11 at 13:45
1  
You could try using mouseenter and mouseleave handlers. – Viruzzo Dec 21 '11 at 13:51
From what I've seen the easiest fix wold be put your <div><span/></div> structure in the .some-class div. Hide it out with CSS, and bind your hover event to the .some-class div. That way if I hover over the text I'm still in the .some-class div. – Chad Dec 21 '11 at 13:52

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.