Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function calculaTotal(){
  2. var total = 0;
  3. if ($(".iten-preco").length > 0){
  4. $(".iten-preco").each(function(){
  5. total += $(this).text();
  6. });
  7. }
  8. $('#total-orcamento').text(total);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement