How To Reset Modal Form In jQuery

Websolutionstuff | Jan-04-2023 | Categories : Laravel PHP jQuery Bootstrap

Have you ever seen those pop-up boxes on websites? They're called modal forms, and they make it easier to do things on the website without needing to reload the whole page.

Now, imagine if you could learn how to make those boxes start over without having to click anything - that's a cool skill! This article will show you how to do just that, using a tool called jQuery. It's like a set of instructions that help you build cool stuff for websites.

No matter if you're good at making websites or just starting, we'll guide you step by step. You'll learn how to make those pop-up boxes reset and start fresh. We'll explain things clearly and give examples, so you'll feel confident to try it out in your own projects.
 

Add HTML

In this step, we will add a bootstrap modal with a form. So, add the following code to the HTML file.

<div class="container">
<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal">Open Modal</button>
  <div class="modal fade" id="myModalExample" role="dialog">
    <div class="modal-dialog">
      <div class="modal-content">
        <div class="modal-header">
                  How To Reset Modal Form In jQuery - Websolutionstuff
          <button type="button" class="close" data-dismiss="modal">&times;</button>
        </div>
        <div class="modal-body">
  <form action="">
    <div class="form-group">
      <label for="email">Email:</label>
      <input type="text" class="form-control" id="email" placeholder="Enter email" name="email">
    </div>
  </form>
        </div>
        <div class="modal-footer">
          <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        </div>
      </div>      
    </div>
  </div>  
</div>

 

Add jQuery

Add the following jquery to reset the form. So, add the following code to the script tag.

$("#myModalExample").modal("show");
$('#myModalExample').on('hidden.bs.modal', function () {
    $('#myModal form')[0].reset();
});

Also, you can trigger the reset() function like the below code.

$('#MyModalExample').on('hidden.bs.modal', function () {
    $(this).find('form').trigger('reset');
})

Output:

how_to_reset_modal_form_using_jquery

 

Conclusion

Learning how to reset popup forms with jQuery lets you make the experience better for users. By doing a few simple things, you can clear the form fields and make it really easy for people 4. using your website.

If you follow these tips, you'll know how to reset forms in a way that works well. This means that when people fill out forms on your website, it will be super smooth and not confusing. So go ahead and try these ideas; you'll see that more people will like using your website!
 


You might also like:

Recommended Post
Featured Post
How To Replace innerHTML of Div Using jQuery
How To Replace innerHTML of Di...

In this article, we will see how to replace the innerHTML of div using jquery. We can use html() method to replace...

Read More

Jul-08-2022

Laravel 8 Image Upload Example
Laravel 8 Image Upload Example

In this article, we will see the laravel 8 image upload example. Image or file upload is the most common task...

Read More

Oct-06-2020

Load More Data in Laravel Using Ajax jQuery
Load More Data in Laravel Usin...

In this article, we will see example of load more data in laravel using ajax jquery, In many websites, has huge content&...

Read More

Feb-26-2021

Autocomplete Search using Bootstrap Typeahead JS
Autocomplete Search using Boot...

In this example we will see autocomplete search using bootstrap typeahead js.Typeahead search is a method for progr...

Read More

Jun-09-2021