clear the input value jquery code example
Example 1: 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 2: empty the value of an input in jquery
$('#field').val('');