Closed andrew2558 closed 4 years ago
How to prevent the right-click menu event from bubbling, because I added other events to the menu parent element
Use the built in event methods - stopPropagation(), etc - you get the original event in all handlers. Or alternatively you can check the event origin in your outside handlers and act accordingly.
How to prevent the right-click menu event from bubbling, because I added other events to the menu parent element