Stop scrollbar while input range move #347
-
Hello! I'm using your awesome plugin (last version) in a site that includes input range elements on it. Is there any option to momentarily stop the scrollbar movement? And restart it again when i mouseleave the input range? Thank you so much. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Try: input.addEventListener('touchmove', (e) => {
e.stopPropagation();
}); |
Beta Was this translation helpful? Give feedback.
-
So easy i want to cry. Thank you so much @idiotWu!! You rock! |
Beta Was this translation helpful? Give feedback.
Try: