Description
The event.currentTarget property contains the current DOM element within the event bubbling phase.
Note: This property will typically be equal to the this of the function.
v1.3
This property has the form:
event.currentTarget
Return Value
This form returns an Element object.
Examples
Alert that currentTarget matches the `this` keyword:
$("p").click(function(event) {
alert(event.currentTarget === this); // true
});