1
I’m wondering how this function is working. It has function when someone by iphone click on the link it is not in there and yes direct to link.
demo.autoclick = function() {
$('a').on('tap', function(e) {
var el = $(this);
var link = el.attr('href');
window.location = link;
});
}