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.data Property

❮ jQuery Event Methods

Example

Return the data passed with the on() method for each <p> element:

$("p").each(function(i){
  $(this).on("click", {x:i}, function(event){
    alert("The " + $(this).index() + ". paragraph has data: " + event.data.x);
  });
});
Try it Yourself »

Definition and Usage

The event.data property contains the optional data passed to an event method when the current executing handler is bound.


Syntax

event.data

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

❮ jQuery Event Methods