Guest User

Untitled

a guest
Oct 23rd, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <table class="table table-bordered">
  2. <thead>
  3. <tr>
  4. <th>Coût HT</th>
  5. <th>Marge</th>
  6. <th>Prix TTC</th>
  7. </tr>
  8. </thead>
  9. <tbody>
  10. <tr>
  11. <td align="center"><p id="totalcout"></p></td>
  12. <td align="center"><p id="marge">5</p></td>
  13. <td align="center"><p id="ttc"></p></td>
  14. </tr>
  15. </tbody>
  16.  
  17. // Addition when click checkbox
  18. $("input[type=checkbox]").click(function(e) {
  19. var total = 0;
  20. $("input[type=checkbox]:checked").each(function() {
  21. total += parseFloat($(this).val());
  22. });
  23. if (total == 0) {
  24. $("#totalcout").html(0);
  25. } else {
  26. $("#totalcout").html(total + ' €');
  27. }
  28. })
Add Comment
Please, Sign In to add comment