Fix jQuery Click Event on Touch Devices (IOS)

If jQuery click event is not working on touch devices especially iPhone or iPad, the fix is quite simple. Lets say we have an anchor tag and you want to perform some activity on click with jQuery. <a href=”” id=”click-button”>Click Here</a> We normally write jQuery click event this way $(#click-button).click( function() { // Code Here … Continue reading “Fix jQuery Click Event on Touch Devices (IOS)”