Skip to content

Instantly share code, notes, and snippets.

@montycheese
Created January 31, 2016 00:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save montycheese/304c7db74372720927f0 to your computer and use it in GitHub Desktop.
Save montycheese/304c7db74372720927f0 to your computer and use it in GitHub Desktop.
redirect to page via javascript
<html>
<head>
</head>
<body>
<h1>Website currently down...</h1>
<h2>You will be redirected to my GitHub page</h2>
</body>
</html>
<script>
window.onload = window.setTimeout(redirect, 5000);
function redirect(){
window.location = 'https://github.com/montycheese';
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment