Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function calc_total()
  2. {
  3. total=0;
  4.  
  5. $('#po_total_amount').each(function() {
  6. total += parseInt($(this).val());
  7. });
  8.  
  9. $('#totalPrice').val(total.toFixed(2));
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement