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