Snippets → JavaScript → Redirect Redirect Chris Coyier on Sep 6, 2009 <script type="text/javascript"> <!-- window.location = "http://www.google.com/" //--> </script>
user
location.href = ‘http://www.google.com’
or
location.replace(‘http://www.google.com’);
agreed!