Delay Redirect Hack

This is a hack for make a delay redirect from a link.

<script>
$('.redirect-link').click(function(e) {
 e.preventDefault();
 setTimeout(function(url) { window.location = url }, 500, this.href);
});
</script>

Home