description:
The event type pops up alert after clicking on the anchor points.
jQuery code:
$("a").click(function (event) {
alert(event.type); // "click"
});
The event type pops up alert after clicking on the anchor points.
$("a").click(function (event) {
alert(event.type); // "click"
});