Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Sets the new location of the current window.
- window.location = "https://www.example.com";
- // Sets the new href (URL) for the current window.
- window.location.href = "https://www.example.com";
- // Assigns a new URL to the current window.
- window.location.assign("https://www.example.com");
- // Replaces the location of the current window with the new one.
- window.location.replace("https://www.example.com");
- // Sets the location of the current window itself.
- self.location = "https://www.example.com";
- // Sets the location of the topmost window of the current window.
- top.location = "https://www.example.com";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement