Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

jQuery event.target Property

❮ jQuery Event Methods

Example

Return which DOM element triggered the event:

$("p, button, h1, h2").click(function(event){
  $("div").html("Triggered by a " + event.target.nodeName + " element.");
});
Try it Yourself »

Definition and Usage

The event.target property returns which DOM element triggered the event.

It is often useful to compare event.target to this in order to determine if the event is being handled due to event bubbling.


Syntax

event.target

Parameter Description
event Required. The event parameter comes from the event binding function

❮ jQuery Event Methods