JavaScript : redirect page to other url

To redirect a page to another URL using javaScript we can make use of window.location object,

window.location = "http://your-redirect-url";

File : redirectPageExample.html
<html>
<head>
<title>Rediect a page using JavaScript</title>
</head>
<body>


<input type="button" value="Redirect Page" onclick="redirectPage()">


<script>
function redirectPage() {
    //Redirects page
    window.location = "http://www.code2care.org";
}
</script>

</body>
</html>

Note: You can also use this object to display the address of the current page!


This is not an AI-generated article but is demonstrated by a human.

Please support independent contributors like Code2care by donating a coffee.

Buy me a coffee!

Buy Code2care a Coffee!

Comments & Discussion

Facing issues? Have questions? Post them here! We're happy to help!