event.typeThe event.type property in jQuery refers to the event type like mousemove,click etc.
event.type property ExampleDisplay the event type.
$("button").click(function(event){
$('#log').append('<p>The event type is: '+ event.type +'</p>');
});
