I have a page which has two different event listeners picking up click events from inside the page. One listener is generic to the site, the other is specific to the page. Recently, a link was added which runs through the first handler, which processes it, opens the url in a new window and then stops the event. The problem is, the second handler then executes, stops the event again and somehow the event continues and executes.

I have stopPropagation, and cancelBubble both executing on this event. When it arrives at the second handler, it has a prevented field which is set to true, but still it carries on. The only way to stop it is to put a check in the second handler which skips its code if the event arrives with prevented set to true.

My question is, why would this happen at all? Why is stopPropagation not working? This happens in all browsers, BTW.

link|improve this question
You might have implemented stopPropogation incorrectly. Maybe you could provide some code or a jsfiddle? – Samuel Liew Jul 6 '11 at 9:21
Is it possible that your second listener isnt 'listening' yet when the first one fires and subsequently calls stopProp? – GlennFerrieLive Jul 6 '11 at 9:22
1  
What about trying to "return false;" instead? – Samuel Liew Jul 6 '11 at 9:23
feedback

2 Answers

I suppose you try to stop event from firing on the same element. Have you tried to use stopImmediatePropagation method?

link|improve this answer
feedback

As Samuel Liew correctly commented, adding return false; to the end of your first event handler might do the trick. This is because some browsers ignore the .stopPropagation() (However, others will ignore the return)

link|improve this answer
You are doing something wrong or this is a bug in jQuery. I bet on the first. – bjornd Jul 6 '11 at 12:29
@bjornd Are you sure this is to me? There's no mention of jQuery in the question and I'm not the asker of the question, simply trying to offer a solution – Alexander Varwijk Jul 6 '11 at 13:18
feedback

Your Answer

 
or
required, but never shown

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