I\'m messing around with touch events on a touch slider and I keep getting the following error:
Ignored attempt to cancel a touchmove event with canc
Calling preventDefault on touchmove while you're actively scrolling is not working in Chrome. To prevent performance issues, you cannot interrupt a scroll.
preventDefault
touchmove
Try to call preventDefault() from touchstart and everything should be ok.
preventDefault()
touchstart