Clear HTML Form Fields with jQuery



With jQuery, you can easily clear HTML form fields. For this, jQuery: reset Selector is used. This will clear the HTML form fields.

Example

You can try to run the following code to clear form fields with jQuery −

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
      <script>
         $(document).ready(function(){
            $(":reset").css("background-color", "#F98700");
         });
      </script>
   </head>
   <body>
      <form action="">
         Student Name<br><input type="text" name="sname"><br>
         Student Subject<br><input type="password" name="ssubject"><br>
         <input type="submit" value="Submit"><br>
         <input type="reset" value="Reset">
      </form>
   </body>
</html>
Updated on: 2020-06-17T13:54:32+05:30

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements