Event Object in jQuery — a practical guide to jQuery event object with clear examples you can reuse in real projects.
jQuery Tutorial Series (27/101). Prefer one article? Read the complete jQuery tutorial.
Short description
event.target vs this (delegated handlers) is a common interview point.
Event object
$('#menu').on('click', 'a', function (e) {
e.preventDefault();
console.log(e.target, this);
});