SO - 30412393
HTML
<a href="http://stackoverflow.com" target="_blank">StackOverflow</a><br>
<a href="https://facebook.com" target="_blank">Facebook (secure)</a>
JavaScript
$("a[href^='http://'], a[href^='https://']").click(function(e) {
setTimeout(function() {
window.location.href = $(this).attr("href");
}, 3200);
console.log($(this).attr("href"));
e.preventDefault();
});