jQuery event.delegateTarget
Learn all about the jQuery function event.delegateTarget.
This property is most often useful in delegated events attached by .delegate()
or .on()
, where the event handler is attached at an ancestor of the element being processed. It can be used, for example, to identify and remove event handlers at the delegation point.
For non-delegated event handlers attached directly to an element, event.delegateTarget
will always be equal to event.currentTarget
.