i’m having some sort of variable out of scope issue or something. in the function below, i’m creating or clearing a timeout based on whether the mouse is entering or exiting. it seems though, that even once the timeout has been created it’s returning undefined on re-entry. not sure what i’m doing wrong here, thanks for your help!
JavaScript: (particular issue is within else conditional on line 35
var navLinks = $('nav li.sub');
navLinks.mouseenter(function(){
console.log('hovering on link');
var thiis = $(this),
subList = thiis.find('ul'),
autoClose;
if (!thiis.hasClass('out')){
console.log('isnt out');
/* Link */
thiis
/* Show submenu when entering link */
.addClass('out')
/* Hide submenu when exiting link */
.mouseleave(function(){
autoClose = setTimeout(function(){
thiis.removeClass('out');
}, 1000);
console.log('exiting link: timeout active', autoClose);
});
} else {
console.log ('is out', autoClose);
if (autoClose){
console.log('is out: clear timeout');
clearTimeout(autoClose);
}
}
});
Techno,
The simple answer is just to move
var autoCloseto an outer scope, but I think you can (and should) do more.More specifically,
mouseleavehandler inside themouseenterhandler. It can be permanently attached from the outset.mouseenterhandler,clearTimeout(autoClose)andthiis.addClass('out')can be executed unconditionally. There’s no real economy in testing.hasclass('out').Try this :