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

event.data

Description: Contains the optional data passed to jQuery.fn.bind when the current executing handler was bound.

event.data

version added: 1.1

Example

The description of the example.
$("a").each(function(i) {
  $(this).bind('click', {index:i}, function(e){
     alert('my index is ' + e.data.index);
  });
});   
Was this information helpful?
   

Comments