Created
September 30, 2014 11:08
-
-
Save ethyde/0e9d336c0d5ed8d33fd8 to your computer and use it in GitHub Desktop.
Redirect page source : http://stackoverflow.com/a/506004
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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