Here\'s the fiddle I\'m working with: http://jsfiddle.net/Scd9b/
How can I delay the href function after the click?
For example a user clicks on the link, th
This should do it:
$("a[href]").click(function () { var url = this.href; setTimeout(function () { location.href = url; }, 2000); return false; });