Description: The current DOM element within the event bubbling phase.
event.currentTarget
version added: 1.3
This property will always be equal to the this of the function.
Example
Alert that currentTarget matches the `this` keyword.
$("p").click(function(event) {
alert( event.currentTarget === this ); // true
});
Was this information helpful?

