$(window).click(function(e) {
alert(e.???);
});
How can I check how id, class or other identifiers of the current click?
The event object gives you a target
property that refers to the actual element clicked, and a currentTarget
property that refers to the element to which the handler was bound.
Those elements are represented as DOM nodes, which are just objects with their own properties, which enable to you to access certain aspects of the state of the element.
$(window).click(function(e) {
alert(e.target.id); // gives the element's ID
alert(e.target.className); // gives the elements class(es)
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With