Skip to content

Instantly share code, notes, and snippets.

@ecabuk
Last active October 2, 2015 04:17
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 ecabuk/2170162 to your computer and use it in GitHub Desktop.
Save ecabuk/2170162 to your computer and use it in GitHub Desktop.
JavaScript Page Redirect
// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");
// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";
//http://stackoverflow.com/a/506004/629760
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment