Skip to main content

How do I redirect to another web page ?

How to go to another webpage ?

Sol:
If you want to open an webpage then you should use

 window.location.href="http://rajparam.blogspot.com"         *It is better for clicking a link or a button.

OR

window.location.replace("http://rajparam.blogspot.com")        *It isbehave as HTTP redirect.

OR

window.location=open("http://rajparam.blogspot.com")            *It opens a webpage in new Tab

Comments