tadam logo
Did you find an error in the text?
Select this with mouse and press
Ctrl + Enter
Xhtml.co.il Check Spelling
Orphus system

event.currentTarget

event.currentTarget

Returns: Element

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?
   

Comments