Hey folks,
I’m running into this strange issue with the double tap / pseudo element / hover state issue with iOS Safari:
If you have an iPhone you can see if for yourself: http://redcow.tela.com/
Try clicking on any of the various menus. You’ll see that the image loses a little transparency and then stalls.
Do you have a suggestion for how to deal with this? CSSMenus suggests the below, but perhaps you have a solution somewhere?
Thanks!
Luke Finsaas
$(document).ready(function() {
$("a").on("click touchend", function(e) {
var el = $(this);
var link = el.attr("href");
window.location = link;
});
});