Saved Bookmarks
| 1. |
What Is The Use Of “event.stoppropagation” In Jquery? |
|
Answer» This method is USED to STOP the event bubbling from the child ELEMENTS. It prevents parent being notified to the child EVENTS. Method – “event.isPropagationStopped()” can be used to CHECK whether method – “stopPropagation” was called or not. This method is used to stop the event bubbling from the child elements. It prevents parent being notified to the child events. Method – “event.isPropagationStopped()” can be used to check whether method – “stopPropagation” was called or not. |
|