Event.stopImmediatePropagation () does not work in Chrome for Android

I believe that event.stopImmediatePropagation() does not work in Chrome for Android. Can anyone fix this? (alternative code)? Thank you

+6
source share
3 answers

Try

 event.callNonExistingMethode(); 

or

Do not use event.stopImmediatePropagation(); use stopImmediatePropagation(); instead stopImmediatePropagation();

+1
source

I hope you are not looking for event.preventDefault()

0
source

event.stopImmediatePropagation() implicit calls to event.stopPropagation()

Can you try with event.stopPropagation() ?

-1
source

Source: https://habr.com/ru/post/919407/


All Articles