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
Post a Comment