Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Trying to wrap my head around the jQuery ".not()" function, and running into a problem. I would like to have the parent div to be "clickable" but if a user clicks on a child element, the script is not called.

$(this).not(children()).click(function(){
   $(".example").fadeOut("fast");
});

the html:

<div class="example">
   <div>
      <p>This content is not affected by clicks.</p>
   </div>
</div>
share|improve this question

2 Answers

up vote 38 down vote accepted

To do this, stop the click on the child using .stopPropagation:

$(".example").click(function(){
  $(this).fadeOut("fast");
}).children().click(function(e) {
  return false;
});

This will stop the child clicks from bubbling up past their level so the parent won't receive the click.

.not() is used a bit differently, it filters elements out of your selector, for example:

<div class="bob" id="myID"></div>
<div class="bob"></div>

$(".bob").not("#myID"); //removes the element with myID

For clicking, your problem is that the click on a child bubbles up to the parent, not that you've inadvertently attached a click handler to the child.

share|improve this answer
thanks nick, I do not think that this is what i was looking for. I am sorry that I was not clear in my question. I want the entire div.example to fadeOut, only when the parent element is clicked, not when the child div is clicked. The reason for this is I would like the user to be able to click on the paragraph text and not have the text fadeOut. If the user clicks on the outer div (parent div), then everything will fade out. – superUntitled Mar 16 '10 at 19:49
@superUntitled - Thanks for the clarification...answer's updated to do this, give it a try. – Nick Craver Mar 16 '10 at 20:23
this is problematic when I have other events tied to the elements (onsubmit of the child elements doesn't work anymore for some reason) – Asaf May 3 '11 at 11:52
1  
@Asaf - use e.stopPropagation(); instead of return false; for that case. – Nick Craver Jun 20 '11 at 13:04
I actually used data.target to solve that one – Asaf Jun 30 '11 at 16:31
show 1 more comment

I'm using following markup and had encoutered the same problem:

<ul class="nav">
    <li><a href="abc.html">abc</a></li>
    <li><a href="def.html">def</a></li>
</ul>

Here I have used the following logic:

$(".nav > li").click(function(e){
    if(e.target != this) return; // only continue if the target itself has been clicked
    // this section only processes if the .nav > li itself is clicked.
    alert('you clicked .nav > li, but not it\'s children');
});

In terms of the exact question, I can see that working as follows:

$(".example").click(function(e){
   if(e.target != this) return; // only continue if the target itself has been clicked
   $(".example").fadeOut("fast");
});

or of course the other way around:

$(".example").click(function(e){
   if(e.target == this){ // only if the target itself has been clicked
       $(".example").fadeOut("fast");
   }
});

Hope that helps.

share|improve this answer
4  
I think this is the better solution. It doesn't interfere with the children in any way and it should perform better as it doesn't potentially register thousands of callbacks if there are thousands of children. – Pompei2 Mar 20 '12 at 23:57
and this work when using .live("click",....) – l2aelba Nov 16 '12 at 10:12
@l2aelba - you should be using .on("click", ...) in recent versions of jQuery as .live() has been deprecated since v1.7. See api.jquery.com/live – Chris Apr 11 at 17:27
Yes, @Chris I posted on Nov 16 '12 at 10:12 – l2aelba Apr 11 at 17:45
Sorry, probably didn't need to reference your ID. I added the comment largely for anyone else reading this answer. – Chris Apr 11 at 17:56

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.