Redirect page using jQuery


If you want to redirect a webpage to some other using jQuery, then you can make use of the following,

var redirectURL = 'The url where you want the page to be redirected';
$(location).attr('href',redirectURL);

Let's see an example, where we have a Page A with a button, when clicked we redirect the page to Page B,

<html>
    
    <head>
        <title>jQuery Redirect</title>
    </head>
    
    <body>
        <input id="myButton" type="button" value="Redirect to Page B">
        <script>
            $('#myButton').click(function() {
                var redirectURL = 'pageB.html';
                $(location).attr('href', redirectURL);
            });
        </script>
    </body>

</html>


















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