how to clear form jquery code example
Example 1: jquery clear form values
$(".reset").click(function() {
$(this).closest('form').find("input[type=text], textarea").val("");
});
Example 2: reset form jquery
<td><input type="reset" id="configreset" value="Reset"></td>