

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to use window.location to redirect to a different URL with JavaScript?
You might have encountered a situation where you clicked a URL to reach a page X but internally you were directed to another page Y. It happens due to page redirection.
It is quite simple to do a page redirect using JavaScript on the client side. To redirect your site visitors to a new page, you just need to add a line in your head section as follows −
Example
You can try to run the following code to learn how to use window.location to redirect to another URL. Here, we will redirect to the home page
<html> <head> <script> <!-- function Redirect() { window.location.assign("https://www.tutorialspoint.com"); } //--> </script> </head> <body> <p>Click the following button, you will be redirected to home page.</p> <input type = "button" value="Redirect Me" onclick="Redirect();" /> </body> </html>
- Related Questions & Answers
- How to use window.location to redirect to a different URL?
- JavaScript - Redirect a URL
- How to redirect URL to the different website after few seconds?
- How to automatically redirect a Web Page to another URL?
- How to use JavaScript to redirect an HTML page?
- How to use JavaScript to redirect a webpage after 5 seconds?
- How to redirect to another webpage with JavaScript?
- How to make a fullscreen window with JavaScript?
- How to Use WebDriver Javascript Executor to Navigate to a URL using Postman?
- How to redirect to another webpage using JavaScript?
- How to use Meta Tag to redirect an HTML page?
- How to open a URL in a new tab (and not a new window) using JavaScript?
- How to use Location API in Android to track your current location?
- How to get the current URL with JavaScript?
- How to specify the URL of the image to use in different situations in HTML?
Advertisements