vote up 2 vote down star

I want to have a click event on the body tag, but I have a div under the body tag which i dont want to have the click event on. I have tryed with this but that doesent seem to work correct:

$("body").not("#InnerDiv").click(function() {
    alert("Hejhej");
});

The html:

<body>
   <div id="1">1</div>
   <div id="2">2</div>
   <div id="InnerDiv">InnerDiv</div>
</body>
flag
What happens when you do that? Does the click even still fire for InnerDiv, or does the click event not fire for anything? – Marc W Oct 5 at 20:39
I think this could use the tag "events" – jes5199 Oct 7 at 15:41

2 Answers

vote up 4 vote down

Click events bubble up. The default click handler on InnerDiv delegates to the click event of its parent. You can override that event and ask it not to bubble up.

$("body").click(function() {
          alert("Hejhej");
      });
$("#InnerDiv").click(function(e) {
          e.stopPropagation();
      });
link|flag
stopPropagation... that was what I was looking for, I couldn't find it in the documentation – Dave Oct 5 at 20:58
yeah, jQuery's documentation on these methods was really hard to find. – jes5199 Oct 5 at 21:52
vote up 1 vote down

Try


    $("body").click(function() { alert("Hejhej"); });
    $('#InnerDiv').click(function(e) { e.stopPropagation(); });
link|flag

Your Answer

Get an OpenID
or

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