Is there any difference b/w calling event.stopImmediatePropagation() and return false inside a event handler?
|
feedback
|
|
Yes they are different.
Whereas In short:
Note: Maybe worth reading: | |||||||||
feedback
|
|
Returning Code Example of this on jsfiddle. | ||||
|
feedback
|
|
Yes. event.stopImmediatePropagation() won't let any other handlers for that event be called, regardless of where they are bound. Return false only stops handlers bound to other elements (ie not the same element as the event handler dealing with the stopImmediatePropagation() call) from receiving the event. | |||
|
feedback
|