How to clear all input fields in a Bootstrap V3 modal when clicking the data-dismiss button?
I did it in the following way.
form
element (which is placed inside the modal) anID
.data-dimiss
an ID
.onclick
method when data-dimiss
is being clicked.Use the trigger()
function on the form
element.
I am adding the code example with it.
$(document).ready(function()
{
$('#mod_cls').on('click', function () {
$('#Q_A').trigger("reset");
console.log($('#Q_A'));
})
});
Hope this will help others as I was struggling with it since a long time.