I have some massively nested GUI controls - when they're clicked or changed or whatever I need to stop the event from going further up the DOM tree. It needs to work across all browsers.
At this point I've got some rather clunky JS code:
//Do something in response to the original user action
//Leave it at that.
try {
e.stopPropagation();
}
catch (ex) {
}
try {
event.cancelBubble();
}
catch (ex) {
}
try {
event.preventDefault();
}
catch (ex) { }
...
This does work, but it smells and feels wrong (personally I loathe empty catch blocks). Is there a neater x-browser trick I can use?
If you use jQuery then just
event.stopPropagation()
will work fine. jQuery unifies the event handling.In general if, you want to test for special browser methods, you can do like so:
This is what jQuery is doing. It creates a wrapper for the event and provides a unified interface.
The name of the event object is defined by you. The event object is passed as first argument to your event handler. You have to setup the event handler to accept a parameter, e.g.:
Typically
e
orevent
are used.