Event Handling in jQuery — a practical guide to jQuery event handling with clear examples you can reuse in real projects.
jQuery Tutorial Series (26/101). Prefer one article? Read the complete jQuery tutorial.
Short description
Namespaces help remove only your handlers: click.myPlugin.
on/off
$('#list').on('click.myApp', '.item', handler);
$('#list').off('click.myApp');