Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created February 7, 2017 14:43
Show Gist options
  • Save Farmatique/e6122536aa3a1247177cf5672ac83a24 to your computer and use it in GitHub Desktop.
Save Farmatique/e6122536aa3a1247177cf5672ac83a24 to your computer and use it in GitHub Desktop.
Hover on iOS mobile
$(document).ready(function() {
$('.hover').bind('touchstart touchend', function(e) {
e.preventDefault();
$(this).toggleClass('hover_effect');
});
});
element:hover, element.hover_effect {
rule:properties;
}
.hover {
-webkit-user-select: none;
-webkit-touch-callout: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment