Comment effacer tout l'élément d'entrée à l'intérieur de Div en utilisant jQuery
By LOVE
$('#divStaffContent').find('input:text, input:password, select')
.each(function () {
$(this).val('');
});
}
Light Leopard