Es algo cutre pero funciona
$(document).on('change', '#quantity_wanted', function(){
setTimeout(function() {
$price = $('.price').attr('content');
$total = $price * $('#quantity_wanted').val() ;
$('.price').text($total+' €');
}, 1500);
});