Jquery click event does not work on li in devices. I tried using click and touchstart events, but the problem with using touchstart I could not scroll down the div. When I try to scroll down by pressing the li button, it will be selected. Is there a way to select and scroll li using any jquery events rather than jQuery mobile events?
$('#liId').on({ 'touchstart' : function(){ console.log('Event Fired'} });
source share