Answers for "how to delet all data in a form jquery"

2

jquery clear form values

$(".reset").click(function() {
    $(this).closest('form').find("input[type=text], textarea").val("");
});
Posted by: Guest on April-03-2020
0

delete all the fields on the form whit jquery

$("#Formulario1")[0].reset();
Posted by: Guest on August-27-2021

Code answers related to "how to delet all data in a form jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language