- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to redirect to another webpage using jQuery?
To redirect to another webpage in jQuery, use attr().
Example
You can try to run the following code to redirect to another webpage:
<html> <head> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { $(location).attr('href','https://qries.com'); }); </script> </head> <body> </body> </html>
- Related Articles
- How to redirect to another webpage using JavaScript?
- How to redirect to another webpage with JavaScript?
- How to make a page redirect using jQuery?
- How to use JavaScript to redirect a webpage after 5 seconds?
- How to link a submit button to another webpage using HTML?
- How to design a checkbox selection for a webpage using jQuery EasyUI?
- Bash Terminal Redirect to another Terminal
- How to automatically redirect a Web Page to another URL?
- How to trigger a hover event from another element using jQuery?
- How to copy the content of a div into another div using jQuery?
- How to refresh a webpage using Python Selenium Webdriver?
- How to create Pay Roll Management Webpage using JavaScript?
- How to scroll down a webpage in selenium using Java?
- How to create a printable webpage using CSS media queries?
- How to get screenshot of full webpage using Selenium and Java?

Advertisements