jQuery
$("li").click(function(event) { alert(event.type);});
target
is the DOM element that issued the
event. pageX
is the xposition of the mouse relative to
document. timeStamp
the time it was created, in ms. stopPropagation()
stops the event from
propagating. 7 of 11