I need a script thats redirects the user to a second side, when the mainpage need to long to load.
I did this:
Try this:
var redirect = setTimeout(function(){ window.location = 'somewhere' }, 10000) $(document).ready(function() { // or $(window).load(function() { clearTimeout(redirect); });