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

 Live Demo

<!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 −


Updated on: 01-Sep-2020

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements