Event.type - тип події.
Event.type;
Event - об'єкт Event.
type властивість об'єкту Event яка містить рядок з типом події (назва).
Тест клік
document.getElementById("test").onclick=function(e){
alert( e.type );
}
function myFunction(event){
event= event || window.event;
alert(event.type);
}
document.onmousemove=myFunction;