-
-
Save blaja/963b98bb1b733bb8c2ea to your computer and use it in GitHub Desktop.
Not worth a look!
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
// Navigate to different location using different BOM && DOM API-s. Paralysis of choice :) Are there more ways ? | |
location = 'https://www.google.com/'; | |
location.href = 'https://www.google.com/'; | |
window.location = 'https://www.google.com/'; | |
document.location = 'https://www.google.com/'; | |
window.location.href = 'https://www.google.com/'; | |
document.location.href = 'https://www.google.com/'; | |
window.location.assign('https://www.google.com/'); | |
document.location.assign('https://www.google.com/'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment