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>
More Posts related to jQuery,
- How to check if an element is hidden using jQuery code?
- Disable jQuery button after being click
- Make div element draggable using jQuery
- Get Browser Screen Width and Height dynamically using jQuery
- jQuery : Move to top of the page
- [jQuery] Uncaught ReferenceError: $ is not defined at index.html:5
- Redirect page using jQuery
More Posts:
- How to create a SharePoint list from an existing list with same columns, views, formatting, data - SharePoint
- Sign in as different user missing in SharePoint 2013, how to enable - SharePoint
- SharePoint An unexpected error has occurred - Correlation ID and PowerShell Merge-SPlogfile - SharePoint
- How to change SharePoint Online site collection or subsite URL address - SharePoint
- Failed to load resource: net::ERR_CACHE_MISS PHP - PHP
- How to install Java 11 on Mac - Java
- Calculate Volume of Sphere - C-Program
- How to check installed Tomcat version - Tomcat