Clicking on elements in jQuery causes bubble up to body. If we have a click handler binded to body that shows an alert, then clicking on any element will bubble up to body and trigger the alert. My Question is, is there any way to know if the body alert was triggered as a result of direct click to body, or was the click triggered because of a bubble up to body.
|
Compare
In the case of elements you know to be unique in a document (basically, just
You have to do One last option is to compare to an ID if your element has one, because these also have to be unique:
|
|||
|
|
|
You can check what was clicked with
|
|||
|
|
|
The "event" parameter passed to the handler has a "target" property, which refers to the element that was the direct target of the event. You can check that property to see if it's the Note that the jQuery ".delegate()" facility can be used to do that checking for you. |
|||
|
|
.livecalls. – Stefan Kendall May 19 '11 at 18:23