I would like to disable the touchstart event when a user scrolls down the page of their mobile device. The page has various elements which when you click toggles a class but I want thos touchstart event diabled when the user swipes down to scroll down the page.
JQUERY
$(document).on('touchstart click', '.flip-container ', function(event){
event.preventDefault();
$(this).find('.flipper').toggleClass('hover');
});
Anyone any idea how? Thanks!