I want to build a page that displays html for a short while and then redirects the user to another URL without opening a new window. How can this be done quickly in Jquery?
// you can use jquery document ready function to call your code after DOM ready
$(document).ready(function(){
setTimeout(function(){
window.open('your url to open');
},5000);// after 5 seconds
});
setTimeout(function(){window.location='something.html';},5000)