Last active
February 24, 2017 16:52
-
-
Save Farmatique/b713b23a1bba3595c15399c830971d60 to your computer and use it in GitHub Desktop.
mobile ios fix - prevent hover on first click
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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