Tuesday 27 December 2011

How to redirect the user from one page to another?

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