JQuery Redirect to URL after specified time

javascript, jquery, redirect

Solution

You could use the `setTimeout()` function:

// Your delay in milliseconds
var delay = 1000; 
setTimeout(function(){ window.location = URL; }, delay);

Problem

Is there a way to use JQuery to redirect to a specific URL after a give time period?

Original source