up vote 0 down vote favorite

I am using this code:

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

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


<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|flag

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

3 Answers

up vote 7 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|flag
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 at 12:40
up vote 3 down vote

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|flag
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
Ah.. something in my code. Hey great solution! – Scott Sep 10 '09 at 6:29
up vote 3 down vote
$(document).click(function(event) {
    if ( !$(event.target).hasClass('form_wrapper')) {
         $(".form_wrapper").hide();
    }
});
link|flag
Hmmm... If I click on something INSIDE the div, the entire div disappears for some reason. – Scott Sep 12 '09 at 19:15
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 at 17:49

Your Answer

get an OpenID
or
never shown

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