Is there a way to use JQuery to redirect to a specific URL after a give time period?
You could use the setTimeout() function:
setTimeout()
// Your delay in milliseconds var delay = 1000; setTimeout(function(){ window.location = URL; }, delay);
1.4m articles
1.4m replys
5 comments
57.0k users