Navigation using window.location
//Navigates to a new page and creates a browser history item.
window.location.assign("http://TundraBlue.com");
//Navigates to a new page and replaces the current page in browser history.
window.location.replace("http://TundraBlue.com");
//Reloads the current location from the server no browser history item is created.
window.location.reload("http://TundraBlue.com");
window.location.assign("http://TundraBlue.com");
//Navigates to a new page and replaces the current page in browser history.
window.location.replace("http://TundraBlue.com");
//Reloads the current location from the server no browser history item is created.
window.location.reload("http://TundraBlue.com");
Comments
Post a Comment