JQuery Redirect to URL after specified time -


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

You can use the function:

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

Comments

Popular posts from this blog

mysql - BLOB/TEXT column 'value' used in key specification without a key length -

c# - Using Vici cool Storage with monodroid -

python - referencing a variable in another function? -