// Goto new location with a new tab
window.open('https://qaiumer.blogspot.com', '_blank');
// Sets the new location of the current window.
window.location = "https://qaiumer.blogspot.com";
// Sets the new href (URL) for the current window.
window.location.href = "https://qaiumer.blogspot.com";
// Assigns a new URL to the current window.
window.location.assign("https://qaiumer.blogspot.com");
// Replaces the location of the current window with the new one.
window.location.replace("https://qaiumer.blogspot.com");
// Sets the location of the current window itself.
self.location = "https://qaiumer.blogspot.com";
// Sets the location of the topmost window of the current window.
top.location = "https://qaiumer.blogspot.com";
1 Comments
nice
ReplyDelete