jQuery $(selector).click() not working on mobile devices fix
Sometimes it happens that
$(selector).click(function() {
// ...
});
don’t works as expected on mobiles, just use
$(selector).bind("click touchstart", function() {
// ...
});
instead of the click, and the job is done :3
It’s not working for me 🙁