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>
This is not an AI-generated article but is demonstrated by a human on an M1 Mac running macOS Sonoma 14.0.
Please support independent contributors like Code2care by donating a coffee.
Buy me a coffee!
