We may able to use the below global object properties to redirect a page to another page on same Tab of a browser.
window.location = "http://etechmate.blogspot.com";
OR
window.location.href = "http://etechmate.blogspot.com";
OR
window.location.replace("http://etechmate.blogspot.com");
Comments
Post a Comment