jQuery emulates IE's mouseenter event on non-IE browsers. In IE, however, mouseenter is being triggered when the page loads (maybe due to jQuery's use of doScroll in the $.ready implementation), even if the mouse is not moved at all.

This doesn't happen in other browsers and definitely doesn't follow Microsoft's own spec, which says (emphasis mine):

The event fires only if the mouse pointer is outside the boundaries of the object and the user moves the mouse pointer inside the boundaries of the object. If the mouse pointer is currently inside the boundaries of the object, for the event to fire, the user must move the mouse pointer outside the boundaries of the object and then back inside the boundaries of the object.

This only becomes an issue of usability if hover (or the hoverIntent plugin) is applied to a navigational item to display a drop down or "mega-menu": In IE, mouseenter will fire immediately after $.ready, obscuring the content with the menu.

link|improve this question

80% accept rate
Been looking for this answer too. – mjw06d Jan 6 '11 at 18:47
feedback

2 Answers

You could do the binding on the first mousemove event, rather than on DOM ready:

$(document).ready(function() {
    $(this).one('mousemove', function() { // only on the first time the mouse is moved
        $('#yourMenu').mouseenter(function() { // bind the mouseenter code
            // your code
        });
    });
});

It's a little hacky, but I think it should work.


I like the solution of using setTimeout. One other solution may be to do the binding on $(window).load() instead:

$(window).load(function(){
    $('#yourMenu').mouseenter(function() { // bind the mouseenter code
        // your code
    });
});
link|improve this answer
See the "Added" note. mousemove gets fired on $.ready() on every element I attached it to. – mrclay Jan 6 '11 at 22:16
feedback
up vote 1 down vote accepted

I found one working solution: Do the binding in a later thread:

jQuery(function ($) {
    setTimeout(function () {
        /* bind with hoverIntent */
    }, 0);
});

In the past this has fixed so many IE problems for me (form elements not being ready) that jQuery should bake it in to $.ready.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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