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