clear previous input data from forms code example
Example: jquery clear form values
$(".reset").click(function() {
$(this).closest('form').find("input[type=text], textarea").val("");
});
$(".reset").click(function() {
$(this).closest('form').find("input[type=text], textarea").val("");
});