up vote 35 down vote favorite
25
share [g+] share [fb]

I am using this code:

$('body').click(function() {
   $('.form_wrapper').hide();
});

$('.form_wrapper').click(function(event){
   event.stopPropagation();
});

And this HTML:

<div class="form_wrapper">
   <a class="agree" href="javascript:;">I Agree</a>
   <a class="disagree" href="javascript:;">Disagree</a>
</div>

The problem is that I have links inside the DIV and when they no longer work when clicked.

link|improve this question

75% accept rate
Surely you could just hide the div when the links are clicked? – annakata Sep 10 '09 at 6:13
are form_wrapper and form_content supposed to be the same? – Eric Sep 10 '09 at 6:22
sorry, yes, i updated my sample code. – Scott Sep 10 '09 at 6:26
feedback

11 Answers

up vote 97 down vote accepted

You'd better go with something like this:

var mouse_is_inside = false;

$(document).ready(function()
{
    $('.form_content').hover(function(){ 
        mouse_is_inside=true; 
    }, function(){ 
        mouse_is_inside=false; 
    });

    $("body").mouseup(function(){ 
        if(! mouse_is_inside) $('.form_wrapper').hide();
    });
});
link|improve this answer
Yes... I will try this. Thanks! – Scott Sep 10 '09 at 6:39
Thank you for your answer man! Helped a lot! – Ricardo Jul 22 '10 at 12:40
How clever! Is this technique standard? – advait Nov 5 '10 at 8:42
@advait I didn't see it used before. It's all about the hover event handler, which opens up many possibilities. – Makram Saleh Nov 5 '10 at 16:21
+1, Very useful, the best code i've never seen for this problem – Amirouche Douda Jan 30 '11 at 7:47
show 8 more comments
feedback

You might want to check the target of the click event that fires for the body instead of relying on stopPropagation.

Something like:

$("body").click
(
  function(e)
  {
    if(e.target.className !== "form_wrapper")
    {
      $(".form_wrapper").hide();
    }
  }
);

Also, the body element may not include the entire visual space shown in the browser. If you notice that your clicks are not registering, you may need to add the click handler for the HTML element instead.

link|improve this answer
Yep, now the links work! But for some reason, when I click the link, it fires it twice. – Scott Sep 10 '09 at 6:27
1  
Ah.. something in my code. Hey great solution! – Scott Sep 10 '09 at 6:29
feedback
$(document).click(function(event) {
    if ( !$(event.target).hasClass('form_wrapper')) {
         $(".form_wrapper").hide();
    }
});
link|improve this answer
Hmmm... If I click on something INSIDE the div, the entire div disappears for some reason. – Scott Sep 12 '09 at 19:15
7  
Instead of checking if the target has the class, try: if ( $(event.target).closest('.form_wrapper).get(0) == null ) { $(".form_wrapper").hide(); } This will insure that clicking things inside of the div won't hide the div. – John Haager Apr 21 '10 at 17:49
@John Haager the .closest() version worked perfect for me, thank you! – Stephen Jun 21 '11 at 22:07
feedback

Updated the solution to:

  • use mouseenter and mouseleave instead
  • of hover use live event binding

var mouseOverActiveElement = false;

$('.active').live('mouseenter', function(){
    mouseOverActiveElement = true; 
}).live('mouseleave', function(){ 
    mouseOverActiveElement = false; 
});
$("html").click(function(){ 
    if (!mouseOverActiveElement) {
        console.log('clicked outside active element');
    }
});
link|improve this answer
You deserve a medal. By far the best answer. Only one that worked properly for me. Thank u! – RGBK Oct 9 '11 at 2:30
feedback

Had the same problem, came up with this easy solution. It's even working recursive:

$(document).mouseup(function (e)
{
    var container = $("YOUR CONTAINER SELECTOR");

    if (container.has(e.target).length === 0)
    {
        container.hide();
    }
});
link|improve this answer
+1 By far the best solution. It doesn't hide your div if you click one of it's children. – craftsman Jan 4 at 6:40
feedback

Even sleaker:

$("html").click(function(){ 
    $(".wrapper:visible").hide();
});
link|improve this answer
feedback

.blur() works not only for < input > http://api.jquery.com/blur/

$('.form_wrapper').blur(function(){
   $(this).hide();
});
link|improve this answer
Doesn't work for me – craftsman Jan 4 at 6:37
feedback

Wouldn't something like this work?

$("body *").not(".form_wrapper").click(function() {

});

or

$("body *:not(.form_wrapper)").click(function() {

});
link|improve this answer
feedback
var n = 0;
$("#container").mouseenter(function() {
n = 0;

}).mouseleave(function() {
n = 1;
});

$("html").click(function(){ 
if (n == 1) {
alert("clickoutside");
}
});
link|improve this answer
feedback

What you can do is bind a click event to the document that will hide the dropdown if something outside the dropdown is clicked, but won't hide it if something inside the dropdown is clicked, so your "show" event (or slidedown or whatever shows the dropdown)

    $('.form_wrapper').show(function(){

        $(document).bind('click', function (e) {
            var clicked = $(e.target);
            if (!clicked.parents().hasClass("class-of-dropdown-container")) {
                 $('.form_wrapper').hide();
            }
        });

    });

Then when hiding it, unbind the click event

$(document).unbind('click');
link|improve this answer
feedback
$(document).ready(function() {

$('.headings').click(function () {$('#sub1').css("display",""); });
$('.headings').click(function () {return false;});
$('#sub1').click(function () {return false;});
$('body').click(function () {$('#sub1').css("display","none");

})});
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.