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
$(document).ready(function(){ $("span.answer").hide(); $("a.question").click(function(e){ e.preventDefault(); $(this).toggleClass("active").next().slideToggle("slow"); var Link = $(this).attr("href"); setTimeout(function() { window.location.href = Link; },2000); }); });