How to reset form input element on click

Created at 23-Aug-2021 , By samar

How to reset form input element on click

Through the use of the programming language, we will work together to solve the "How to reset form input element on click" puzzle in this lesson.

You can reset the form input element on click using jQuery by assigning null value to it. Here we can use jquery / javascript element selector and after that assign null value using .val() method in jQuery and .value method in javascript.
  • Reset form input element by name on click using jQuery

    <form id="formId" method="POST" action="../">
        <input type="text" name="first_name" value="w3codegenerator.com" />
    </form>
    <button type="button"> Click button </button>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
    <script>
    $(document).ready(function(){
        $('button').on('click', function(){
            $('#formId').find('input[name="first_name"]').val('');
        });
    })
    </script>
    
  • Reset form on click button using reset() method in jQuery

    <form id="FormId">
        <input type="text" name="name" />
    </form>
    <button type="button"> Reset Form </button>
    
    
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
    <script>
    $(document).ready(function() {
        $("button").click(function() {
            $("#FormId")[0].reset()
        });
    });
    </script>
    

Back to code snippet queries related jquery

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

Don't forget to share this article! Help us spread the word by clicking the share button below.

We appreciate your support and are committed to providing you valuable and informative content.

We are thankful for your never ending support.