window.location.replace(...)
will best simulate an HTTP redirect. If you want to simulate someone clicking on a link, use location.href
. If you want to simulate an HTTP redirect, use location.replace
.// similar behavior as an HTTP redirect
window.location.replace("http://myurl.com");
// similar behavior as clicking on a link
window.location.href = "http://myurl.com";
No comments:
Post a Comment