vote up 1 vote down star
1

I'm working on a jQuery drop-down menu that fades in when you hover on the top-level items. I want to set it so that when you move the mouse away the menu doesn't disappear instantly. I have this code:

$(document).ready(function(){
  $('ul#menu > li').hover(
    // mouseover
    function(){
      $(this).find('>ul').fadeIn('fast');
    },
    // mouseout
    function(){
      setTimeout( function(){
        alert('fadeout');
        $(this).find('>ul').fadeOut('fast')
        }, 1000 );
    }  
  );
});

After a second the alert happens, but the menu isn't faded out.

flag

I was just thinking, could this be because "this" points to something else inside the setTimeout function? – DisgruntledGoat Sep 22 at 0:58
Yes, that is correct. You are getting the window. – unknown (google) Sep 22 at 1:18

2 Answers

vote up 2 vote down check

window.setTimeout(), so this refers to the window object.

// mouseout
function(){
  var el=this;
  setTimeout( function(){
    alert('fadeout');
    $(el).find('>ul').fadeOut('fast')
    }, 1000 );
}
link|flag
Decided to go with a solution similar to this, thanks! – DisgruntledGoat Sep 22 at 17:01
vote up 1 vote down

Have a look at hoverIntent. It'll give you greater control of the behaviour of the mouseover/mouseout events by configuration:

var config = {    
     sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
     interval: 200, // number = milliseconds for onMouseOver polling interval    
     timeout: 500, // number = milliseconds delay before onMouseOut    
};

$(document).ready(function(){
  $('ul#menu > li').hoverIntent(
    // mouseover
    function(){
      $(this).find('>ul').fadeIn('fast');
    },
    // mouseout
    function(){
       $(this).find('>ul').fadeOut('fast');
    }  
  );
});
link|flag
This looks pretty cool, thanks! I have one problem though: I want the timeout when I move away from the menu completely, but if I move from one menu item to the next I want to turn the old menu off instantly - is that possible? – DisgruntledGoat Sep 22 at 1:42
1  
Use .stop(true,true): docs.jquery.com/Effects/stop – unknown (google) Sep 22 at 2:01
Hmm, not sure if that's what I need. What I meant is I want to remove the delay before each menu appears, if the menu is already open. So the very first mouseover would have a short delay (to prevent opening the menu when brushing past). But if a menu is open, moving to the next menu along would display it instantly without the delay. – DisgruntledGoat Sep 22 at 2:29
You can check the state of the menu (by the styles or checking if its animating ":animated" pseudo-selector) or store a boolean flag. A boolean flag may be faster and simpler to implement. – unknown (google) Sep 22 at 4:59

Your Answer

Get an OpenID
or

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