Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
jQuery

Event Object in jQuery

Use the normalized event object for target, preventDefault, and stopPropagation.

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);
});

Leave a reply

Your email address will not be published. Required fields are marked *