

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 Questions & Answers
- How to clear HTML form fields with jQuery?
- How to refresh a page in Firefox?
- Display form values after clicking Submit button using event.preventdefault() - jQuery?
- How to refresh a JSP page at regular interval?
- jQuery after() method
- Refresh Image Tkinter after 10 seconds Interval (Python 3)
- Usage of page-break-before, page-break-after, and page-break-inside properties in CSS
- Clearing localStorage in JavaScript?
- How to link jQuery in HTML page?
- How to loop through all the iframes elements of a page using jQuery?
- How to loop through all the image elements of a page using jQuery?
- Style Input Fields of a form with CSS
- How to remove the hash from window.location (URL) with JavaScript without page refresh?
- Stop making form to reload a page in JavaScript
- Some Lesser-Known CSS Properties for Form Input Fields
Advertisements