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 a
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 <body>
element.
Note that the jQuery ".delegate()" facility can be used to do that checking for you.
Compare event.target to this
. this
is always the event where the handler is bound; event.target
is always the element where the event originated.
$(document.body).click(function(event) {
if (event.target == this) {
// event was triggered on the body
}
});
In the case of elements you know to be unique in a document (basically, just body
) you can also check the nodeName
of this
:
$(document.body).click(function(event) {
if (event.target.nodeName.toLowerCase() === 'body') {
// event was triggered on the body
}
});
You have to do toLowerCase()
because the case of nodeName
is inconsistent across browsers.
One last option is to compare to an ID if your element has one, because these also have to be unique:
$('#foo').click(function(event) {
if (event.target.id === 'foo') {
// event was triggered on #foo
}
});
You can check what was clicked with event.target:
$(something).click(function(e){
alert(e.target)
})
In React, you need to create a reference to the Component with React.createRef(). Something like this:
class Foo extends React.Component {
constructor(props) {
super(props);
this.eRef = React.createRef();
}
render() {
return(
<div
ref={this.eRef}
onClick={(ev) => {
if (ev.target == this.eRef.current) console.log("Target hit");
}}
>
Click me, maybe
</div>
);
}
}
In React, we can directly get using currentTarget and target
import React from "react";
function Bar() {
return (
<div
onClick={(ev) => {
if (ev.target == ev.currentTarget) console.log("Target hit");
}}
>
Click me, maybe <div>test doesnt trigger hit</div>
</div>
);
}