Skip to content

Instantly share code, notes, and snippets.

@lmeyer
Created October 10, 2016 09:55
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 lmeyer/b98bdda9237e43179019c84c9de20771 to your computer and use it in GitHub Desktop.
Save lmeyer/b98bdda9237e43179019c84c9de20771 to your computer and use it in GitHub Desktop.
Javascript page redirection difference
// 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";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment