What happens if I bind two event handlers to the same event for the same element?
For example:
var elem = $(\"...\")
elem.click(...);
elem.click(...)
Both handlers get called.
You may be thinking of inline event binding (eg "onclick=..."), where a big drawback is only one handler may be set for an event.
jQuery conforms to the DOM Level 2 event registration model:
The DOM Event Model allows registration of multiple event listeners on a single EventTarget. To achieve this, event listeners are no longer stored as attribute values