How can i calculate the total amount of Multiple products in Javascript? Values are coming in AJAX
php
Solution
First i store all the value in to the hidden field..
<input type="hidden" name="NumberOfProperty[]" id="NumberOfPropertyTxt<?php echo $id;?>" value=""/>
When my ajax is calling i got all the value in it..
var values=$('input[name="NumberOfProperty[]"]').map(function()
{
return this.value
}).get();
console.log(values);
In this i got my all price stored in to the array...then
var Total=0;
$('input[name="NumberOfProperty[]"]').each(function()
{
if($(this).val()>0)
{
Total+= parseFloat($(this).val());
}
});
$('#sub_total').val(Total);
$('#subtotal').html(Total);
I got all the value into the Total and assign it in to the sub_total id.
Problem
``` $.ajax({ type: "POST", url: 'ajax_subtotal.php', data: listing_id=listId, dataType:'json', success: function(data) { if(data['result']=='success') { alert(data['pricing']); } } ``` `data['pricing']` gives me the price of one product..The function is calling if product quantity is changed. So, how can I calculate the total price of the multiple products at the same time??