Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

check for ('div')mouseenter on ('a')mouseleave

my problem is following: I got a trigger(a) and a popup(div). The div doesn't lie nested inside the anchor.

  • When I hover over a, I want the div to show up.
  • When I go from a to the div, I want it to stay visible.
  • When I leave the div, I want it to close.
  • When I hover over a and leave without entering the div, I want the div to close.

I got most of that figured out, but now I'm struggeling with requierement no. 2. When checking for mouseleave on a, I check if there is a mouseenter on the div. If it is, I want to abort the mouseleave. If not, I want to close the div.

What am I doing wrong? Is this even the right way to do this?

Here's the markup:

<a href="#" class="popup_toggle" style='display:block;width:50px;height:50px;border:1px solid red;position:relative;'>Toggle</a>
<div class="popup_div" style='position:absolute;top:50px;left:0px;border:1px solid blue;display:none;'>Popup</div>

Here's the jQuery:

$('.popup_toggle').mouseenter(function() {
        var element = $(this).next('.popup_div');
        $.data(this, 'timer', setTimeout(function() {
            element.show(100);
        }, 500));
    });

    $('.popup_toggle').mouseleave(function() {
        clearTimeout($.data(this, 'timer'));
            if($('.popup_div').mouseenter==true)
            {
                return false;
            }
            else
            {
                $('.popup_div').hide(100)
            };
    });
like image 968
chabuya Avatar asked Oct 10 '22 19:10

chabuya


2 Answers

What you're trying to do is fairly simple. When entering the trigger, identify the panel (layer, popup, whatever), save reference to each other using .data() and have the event handlers check if the related targets are either the trigger (from the panel view) or the panel (from the trigger view). I threw something together. Have a look at the console log to see how this works… http://jsfiddle.net/rodneyrehm/X5uRD/

like image 183
rodneyrehm Avatar answered Oct 14 '22 06:10

rodneyrehm


That will most likely not work...no. I would suggest that you add a mouseenter and mouseleave callback to you <div> element as well and have them set a global variable that tells your other callbacks how to handle their events, i.e. "if global variable is true, don't hide the popup on mouseleave, otherwise hide popup" or something like this.

The other approach would be to check whether the mouse is inside the popup when the mouseleave callback tries to hide the popup. That might be much more work than it is worth though.

like image 20
Till Helge Avatar answered Oct 14 '22 05:10

Till Helge