Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Last active February 24, 2017 16:52
Show Gist options
  • Save Farmatique/b713b23a1bba3595c15399c830971d60 to your computer and use it in GitHub Desktop.
Save Farmatique/b713b23a1bba3595c15399c830971d60 to your computer and use it in GitHub Desktop.
mobile ios fix - prevent hover on first click
jQuery('a').on('click touchend', function(e) {
var el = jQuery(this);
var link = el.attr('href');
window.location = link;
});
Нужно помнить, что это повлияет на все ссылки <a>, в частности те что открываются в новом окне будут тоже открываться в том же
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment