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:
- Fix SharePoint Error - The Managed Metadata Service or Connection is currently not available. The Application Pool or Managed Metadata Web Service may not have been started - SharePoint
- Outlook and Hotmail not working - email issue, message not delivered, send receive problem - Microsoft
- Set width and height for the label in tkinter - Python
- How to install zsh shell on Ubuntu - Ubuntu
- AlertDialog with image using ImageView Example - Android
- Bash - How to check if a Command Failed? - Bash
- Android Studio: Cannot perform refactoring operation - Android-Studio
- MainActivity error: cannot find symbol FloatingActionButton - Android