Is there a jQuery plugin or JavaScript script that automagically loops through each CSS hover (found in an external stylesheet) and binds it with a double touchdown event?>
This worked for me!
// Ipad Navigation Hover Support $('#header .nav li a').bind('touchstart touchend', function(e) { if( $(this).attr("href") != "" ){ window.location = $(this).attr("href"); } });