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

76% 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

12 Answers

up vote 17 down vote accepted

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  
+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
Only answer that worked for me.. – Jleagle Apr 13 at 10:54
1  
You might also want to use is to make sure that the target isn't the container like this: if (!container.is(e.target) && container.has ... – dontangg May 18 at 20:42
Thanks!!! One small, very minor criticism. You need to keep your { on the same line and not "PHP-style" where { are put on the line below. JavaScript might put a semicolon after your if statement under certain conditions. Read "JavaScript the Good Parts" oreilly.com/javascript/excerpts/javascript-good-parts/… – mrbinky3000 yesterday
feedback

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
1  
Too simple to be true, but that's it! :) – o_O Tync Apr 1 at 21:12
3  
This will not work on tablets as you can not hover! – Jleagle Apr 13 at 10:47
show 11 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
I ended up using a variation of this. I first check if the element is visible then if the target.hasClass I hide it. – Hawkee Apr 23 at 20:03
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

Wouldn't something like this work?

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

});

or

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

});
link|improve this answer
We have a winner! – ajkochanowicz Feb 24 at 19:00
It has a downside: performance. – Eliseu Monar Apr 3 at 17:30
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

As a shorter version of the highest-rated answer on this question, you can also just make an integer count up. Modulating that integer returns a 1 (inside) or a 0 (outside).

This makes the code do exactly the same thing but with less.

var gg = 0;
$('.form_content').hover(function(){gg++;});
$("body").mouseup(function(){ 
    if(gg%2==0) $('.form_wrapper').hide();
});
link|improve this answer
Although I must say Vinny's seems to be the best solution. Vote it up! – ajkochanowicz Feb 24 at 19:01
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.