clear input value with jquery code example
Example 1: clear input jqueyr
$('#inputButtonID').val('');
Example 2: how To clear all the input element inside div using jquery
By LOVE
$('#divStaffContent').find('input:text, input:password, select')
.each(function () {
$(this).val('');
});
}