- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
Refresh page after clearing all form fields in jQuery?
To refresh page, use the location.reload() in JavaScript. The sample JavaScript code is as follows −
Example
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document</title> </head> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <body> <form> <label for="userId"> UserName: <input type="text" > </label> <br> <label for="pass"> Password: <input type="password" > </label> <br> <button type="submit" id="RefreshPage" >Refresh Page</button> </form> <script> $('#RefreshPage').click(function() { location.reload(); }); </script> </body> </html>
To run the above program, save the file name “anyName.html(index.html)” and right click on the file. Select the option “Open with Live Server” in VS Code editor.
Output
This will produce the following output −
After filling the form, the snapshot is as follows −
When you click the button “Refresh Page”, the page will refresh and the following output is visible −
- Related Articles
- How to refresh a page in Firefox?
- How to clear HTML form fields with jQuery?
- How to refresh a JSP page at regular interval?
- Display form values after clicking Submit button using event.preventdefault() - jQuery?
- How to remove the hash from window.location (URL) with JavaScript without page refresh?
- How to loop through all the iframes elements of a page using jQuery?
- Usage of page-break-before, page-break-after, and page-break-inside properties in CSS
- How to link jQuery in HTML page?
- jQuery after() method
- Clearing localStorage in JavaScript?
- Include all existing fields and add new fields to document in MongoDB?
- How to refresh a browser then navigate to a new page with Javascript executor in Selenium with python?
- How to load a page in div using jQuery?
- How should I initialize jQuery in a web page?
- Get all fields names in a MongoDB collection?

Advertisements