Describes the nature of the event.
event.type
version added: 1.0
Examples:
On all anchor clicks, alert the event type.
1 2 3 | $( "a" ).click( function ( event ) { alert( event.type ); // "click" }); |
Please login to continue.