Jump to content

Edit History

gusman126

gusman126

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);
        

    });

 

gusman126

gusman126

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);
        

    });

 

×
×
  • Create New...