I am experiencing a weird problem. I have a jQuery function as below. The button clicks fire when you scroll the page with using a mobile phone.
The user visits the website on a mobile phone needs to scroll throughout the web page however the buttons are so sensitive when the user accidentally scrolls over the button it triggers the button event.
jQuery code:
$('body').on( 'click','.addbasket', function(e){
e.preventDefault();
alert("CLICKED");
});
Example URL: