Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
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 Yu - UX designer Sep 10 '09 at 6:26

16 Answers

up vote 275 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();
    }
});
share|improve this answer
7  
+1 By far the best solution. It doesn't hide your div if you click one of it's children. – craftsman Jan 4 '12 at 6:40
43  
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 '12 at 20:42
3  
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 May 24 '12 at 14:32
16  
@mrbinky3000 No, you're wrong with that. It is up to me which indention style I use and I personally prefer the ANSI style. It is true that most JS coders use K&R. Also: most PHP coders use K&R and not ANSI. – prc322 Jun 7 '12 at 14:54
5  
this is the best solution, touch compatible – H17737 Sep 9 '12 at 14:43
show 21 more comments

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();
    });
});
share|improve this answer
Yes... I will try this. Thanks! – Scott Yu - UX designer Sep 10 '09 at 6:39
Thank you for your answer man! Helped a lot! – Ricardo Jul 22 '10 at 12:40
1  
Too simple to be true, but that's it! :) – kolypto Apr 1 '12 at 21:12
19  
This will not work on tablets as you can not hover! – Jleagle Apr 13 '12 at 10:47
2  
Awesome ! But yes, as @Jleagle said : what about tablets ? We can not hover... – Steffi Jun 12 '12 at 9:28
show 15 more comments

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.

share|improve this answer
Yep, now the links work! But for some reason, when I click the link, it fires it twice. – Scott Yu - UX designer Sep 10 '09 at 6:27
2  
Ah.. something in my code. Hey great solution! – Scott Yu - UX designer 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 '12 at 20:03
and dont forget e.stopPropagation(); if you have other click listener – Darin Kolev 2 days ago
$(document).click(function(event) {
    if ( !$(event.target).hasClass('form_wrapper')) {
         $(".form_wrapper").hide();
    }
});
share|improve this answer
Hmmm... If I click on something INSIDE the div, the entire div disappears for some reason. – Scott Yu - UX designer Sep 12 '09 at 19:15
8  
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

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');
    }
});
share|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

Wouldn't something like this work?

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

});

or

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

});
share|improve this answer
We have a winner! – ajkochanowicz Feb 24 '12 at 19:00
1  
It has a downside: performance. – Eliseu Monar Apr 3 '12 at 17:30

Even sleaker:

$("html").click(function(){ 
    $(".wrapper:visible").hide();
});
share|improve this answer
var n = 0;
$("#container").mouseenter(function() {
n = 0;

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

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

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

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

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();
});
share|improve this answer
Although I must say Vinny's seems to be the best solution. Vote it up! – ajkochanowicz Feb 24 '12 at 19:01

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');
share|improve this answer
$(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");

})});
share|improve this answer
1  
Please add some details on you answer, like what you did. – Starx Nov 7 '12 at 8:26

Using plain javascript you can try something like this:

http://jsfiddle.net/aamir/y7mEY/

share|improve this answer

I used the top answer for a period of time. If you clicked the container itself and not objects in the contain it would hide the container.

$(document).on('mousedown', function (e) {
    if (!$(e.target).closest("#CONTAINER").length){
    $("#CONTAINER").hide();
    }
});
share|improve this answer

if you have trouble with ios, mouseup is not working on apple device.

does mousedown /mouseup in jquery work for the ipad?

i use this:

$(document).bind('touchend', function(e) {
        var container = $("YOURCONTAINER");

          if (container.has(e.target).length === 0)
          {
              container.hide();
          }
      });
share|improve this answer

I think it can be a lot easier. I did it like this:

$(':not(.form_wrapper)').click(function() {
    $('.form_wrapper').hide();
});
share|improve this answer
I would avoid this, you're going to add click event handlers to every element in your document besides the .form_wrapper. – JayD3e Feb 26 at 21:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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