Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

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