BoulderBum
Programmer
Okay, I have a mousedown event handler on a parent div, and an element within the parent which has its own mousedown event handler.
If the child event handler fires, I wasnt to cancel the parent event. In IE, this happens via:
window.event.cancelBubble = true;
...but what do I do for FireFox?
If the child event handler fires, I wasnt to cancel the parent event. In IE, this happens via:
window.event.cancelBubble = true;
...but what do I do for FireFox?