vote up 1 vote down star

Hi,

I'm trying to make a drop down menu using javascript/jquery but can't get my head round something.

When you mouseover a menu item it needs to display a div below it which contains another menu, in a similar fashion to lots of javascript menus.

The problem i am having is that when you mouseout of the menu item then the div needs to disappear, unless you have moved the mouse onto the div, in which case the div needs to stay there until you roll off it.

The trouble is that the mouseout event of the menu item fires before the mouseover event of the div.

I guess what I am trying to say is that the div would only disappear when you mouseout of the area which covers buth the menu and the div.

Does that make sense to anyone? (code below)

<ul id="menu">
    <li class="item1"><a href="#"></a></li>
    <li class="item2">
        <a href="#"></a>
        <div class="dropDownMenu">
            <div><a href="#">Sub-item 1</a></div>
            <div><a href="#">Sub-item 2</a></div>
            <div><a href="#">Sub-item 3</a></div>
        </div>
    </li>
    <li class="item3"><a href="#"></a></li>
</ul>


$('#menu LI > A').mouseover(function(){

    $(this).find('dropDownMenu').show();

});
$('#menu LI > A').mouseout(function(){

    $(this).find('dropDownMenu').hide();

    ^^^ Only do this if the user hasn't moved on to the drop down menu.

});
flag

3 Answers

vote up 1 vote down check

You can use mouseenter instead of mouseover.

link|flag
That's magic. How have I never noticed that before? Shame it doesn't work with .live() but still great, thanks. – jonhobbs Sep 3 at 19:39
vote up 0 vote down

You want something like this in your mouseover handler:

if (menuDiv.style.display == 'block') {
    // Menu div is showing, so see if mouse left it, or it's just moving over
    // some other element within the div
    try {
        var element = Event.element(event);
        if ((element && (element != menuDiv) &&
                !element.descendantOf(menuDiv))) {
            // Mouse moved over something other than the popup DIV, so hide it
            menuDiv.style.display = 'none';
        }
    }
    catch (e) { /* eat silly MSIE JS debugger traps */ }
}

This is based on Prototype, but the jQuery equivalent should be straightforward.

link|flag
vote up 0 vote down

One solution may be starting a timeout when "#menu LI > A".mouseout fires (and clearTimeout when div.onmouseover fires); this way the menu would also be less difficult to use.

link|flag

Your Answer

Get an OpenID
or

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