jQuery Sum Toutes les valeurs d'entrée

$('.price').blur(function () {
    var sum = 0;
    $('.price').each(function() {
        sum += Number($(this).val());
    });

    // here, you have your sum
});
Grotesque Gentoo