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