Tag Archives: redirect
How to redirect URL in Javascript or jQuery
How to redirect URL in Javascript or jQuery I will present some ways to redirect the user to another page from the client side using only plain javascript. 1) Using window.location.href you obtain a similar behavior as an HTTP redirect
1 2 3 |
<script language=”JavaScript”> window.location.href = 'http://www.google.com'; </script> |
2) Using window.location.replace
1 2 3 |
<script language=”javascript” type=”text/javascript”> window.location.replace("http://anothersite.com"); </script> |
window.location.href VS window.location.replace It is better than using window.location.href, because replace() does not put