JavaScript : redirect page to other url


In order 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!



















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap