Which property of the jQuery event object references the DOM object that dispatched an event?
object Source: jQuery Docs: event.target The target property can be the element that registered for the event or a descendant of it. It is often useful to compare event.target to this in order to determine if the event is being handled due to event bubbling. Extra reading: Event Bubbling and capturing
The target property can be the element that registered for the event or a descendant of it. It is often useful to compare event.target to this in order to determine if the event is being handled due to event bubbling.
source
self
target