How to 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: 17-Jun-2020

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements