Jquery target vs currentTarget - ythy/blog GitHub Wiki

event.currentTarget

The current DOM element within the event bubbling phase.

This property will typically be equal to the this of the function.

event.target

The DOM element that initiated the event.

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. This property is very useful in event delegation, when events bubble.