$(document).ready(function() {
  
$('a').on('click touchend', function(e) {
var el = $(this);
var link = el.attr('href');
window.location = link;
});
  
});
	Double tap target issue on ios devices
Below code solves the double tap target issue for IOS devices where users have to tap twice to go to a link.
 
					