Hi guys,
I am facing an issue, which is that when I am scrolling the scroll view I accidentally click on the buttons which are inside the scroll view, I need to avoid those misclicks,
The buttons are on touchend event.
You can experience them here,(Note: UI is only enabled for mobile so try on mobile)
Thanks
Is the scroll view an HTML DOM object? Rather than using touch end for the buttons, listen for the click event or check the time between the touch start end event. If it’s longer than X, don’t select it.
No, Its not a Dom object, sure I ll try the time one, and let you know.
Thanks
@yaustar Thanks
The “click” event solved it.