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.

Just a quick question about hover events, How can I send a hover event to an element without the user hovering (programmatically).

example:

// Send hover event
$('#myDiv').sendHoverEvent();

// What to do once hovering
$('#myDiv').hover(console.log('hovering'));

Thank you.

share|improve this question

2 Answers

up vote 5 down vote accepted

Try this:

 $('#myDiv').trigger('hover'); 
share|improve this answer
Thank you very much – Elgoog Jun 3 '11 at 3:43
1  
For others that are looking for an answer to this I used the above and it didn't work, I made a small change: $('#myDiv').trigger('mouseenter'); and it worked fine, might be a browser issue, not sure. Thanks again @Andrew Cooper – Elgoog Jun 3 '11 at 8:32

Hover connects two events. The one you want to trigger is mouseenter.

$('#myDiv').mouseenter();
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.