Cant Run SUM this code not working on table How To FIX ?
PHP MYSQL, JAVASCRIPT
<td contenteditable="true" class="price"> </td>
<td contenteditable="true" class="price"> </td>
<td contenteditable="true" class="price"> </td>
<td contenteditable="true" class="price"> </td>
<td contenteditable="true" class="price"> </td>
<td contenteditable="true" class="price"> </td>
<script>
$(document).on("change", ".price", function() {
var sum = 0;
$(".price").each(function(){
sum += +$(this).val();
});
$(".total").val(sum);
});
</script>
<input type="text" id="total" class="total" value="" />