Can anyone point me the differences b/w jquery event.stopPropagation() and event.stopImmediatePropagation() methods(possibly with example)?
|
|
|||||
|
|
Quick example from the jquery documentation:
|
|||||||||||
|
|
From the jQuery API:
In short: |
|||
|
|
|
Added a small example on jsfiddle to demonstrate how both these propagation stoppages work. There are three event handlers bound. If we don’t stop any propagation, then there should be four alerts - three on the child div, and one on the parent div. If we stop the event from propagating, then there will be 3 alerts (all on the inner child div). Since the event won’t propagate up the DOM hierarchy, the parent div won’t see it, and its handler won’t fire. If we stop propagation immediately, then there will only be 1 alert. Even though there are three event handlers attached to the inner child div, only 1 is executed and any further propagation is killed immediately, even within the same element. |
|||
|
|
|
|
|||||
|
