clear value of input jquery code example
Example 1: clear input jqueyr
$('#inputButtonID').val('');
Example 2: jquery clear form values
$(".reset").click(function() {
$(this).closest('form').find("input[type=text], textarea").val("");
});
Example 3: how To clear all the input element inside div using jquery
By LOVE
$('#divStaffContent').find('input:text, input:password, select')
.each(function () {
$(this).val('');
});
}
Example 4: empty the value of an input in jquery
$('#field').val('');