jQuery Events — a practical guide to jQuery events with clear examples you can reuse in real projects.
jQuery Tutorial Series (17/101). Prefer one article? Read the complete jQuery tutorial.
Short description
Prefer .on() for consistency and easier delegation.
Events idea
$('#btn').on('click', handler);
$('form').on('submit', onSubmit);