Skip to content

Instantly share code, notes, and snippets.

@marchampson
Created July 16, 2014 09:54
Show Gist options
  • Save marchampson/de9a1a414e89210a30ce to your computer and use it in GitHub Desktop.
Save marchampson/de9a1a414e89210a30ce to your computer and use it in GitHub Desktop.
Touch device hover fix
$('a').on('click touchend', function(e) {
var el = $(this);
var link = el.attr('href');
window.location = link;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment