jquery - How to force not to stopPropagate -
I am using a jquery plugin which binds a click event on some elements.
I know that the plugin uses
e.stopprogication (); But when I click on those elements, I want to make my own events as well.
Can the stop management of plug-in be disabled, or is my event a priority on plugin binds?
e.stopprogagement () one stops parent objects to parent From the promotion of this, it does not block other event handlers associated with firing with similar objects. Therefore, if you want other event handlers on the object, you can add them directly and they just need to make sure at E.stopPropagation () at all. That you are engaging your own events in the actual source object of the event, not on a parent object. In response to the second part of your question, the e.stopPropagation () call is to remove the handler that is calling it or plug it out to remove that line Modifies the code in-but, fortunately, you can keep your work event handler on the object without doing any of these.
Comments
Post a Comment