They seem to be doing the same thing... Is one modern and one old? Or are they supported by different browsers?

When I handle events myself (without framework) I just always check for both and execute both if present. (I also return false, but I have the feeling that doesn't work with events attached with node.addEventListener).

So why both? Should I keep checking for both? Or is there actually a difference?

(I know, a lot of questions, but they're all sort of the same =))

link|improve this question

feedback

2 Answers

stopPropagation stops the event from bubbling up the event chain.

preventDefault prevents the default action the browser makes on that event.

Let's say you have

<div id="foo">
 <button id="but" />
</div>

$("#foo").click(function() {
   // mouse click on div
});

$("#but").click(function(ev) {
   // mouse click on button
   ev.stopPropagation();
});

With stopPropagation only the buttons click handler is called and the divs click handler never fires.

Where as if you just preventDefault only the browsers default action is stopped but the div's click handler still fires.

Below are some docs on the DOM event objects from MDC and MSDN

MSDN:

MDC:

For IE9 and FF you can just use preventDefault & stopPropagation.

To support IE8 and lower replace stopPropagation with cancelBubble and replace preventDefault with returnValue

link|improve this answer
So they're very different? Does IE have two different event methods for that too? (Might they be the same??) It's weird that frameworks do both in their event.stop function... Also weird I've never had trouble with that. I use bubbling a lot. Thanks for the example! – Rudie May 11 '11 at 11:54
@Rudie commented on browser support. – Raynos May 11 '11 at 12:11
feedback
up vote 3 down vote accepted

I hate it when this happens. I found a perfect explanation: http://davidwalsh.name/javascript-events

link|improve this answer
Well, I was halfway through explaining. But yes, David Walsh's one brings it to the point. – Boldewyn May 11 '11 at 11:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.