Advertisement
rowers

Untitled

Feb 10th, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">var calculateTotalPrice = function() {
  2.     var checkboxes = document.querySelectorAll('input[type=checkbox]');
  3.     var totalPrice = 0;
  4.  
  5.     for(var i = 0; i < checkboxes.length; i += 1) {
  6.         if (checkboxes[i].checked) {
  7.              totalPrice = totalPrice + parseInt(checkboxes[i].value, 10);
  8.         }
  9.     }
  10.    
  11.     console.log(totalPrice);
  12.    
  13.     document.querySelector('.total-price').innerHTML = totalPrice;
  14. };
  15.  
  16. window.onload = function() {
  17.     var checkboxes = document.querySelectorAll('input[type=checkbox]');
  18.  
  19.     for(var i = 0; i < checkboxes.length; i += 1) {
  20.         checkboxes[i].addEventListener('click', calculateTotalPrice, false);
  21.     }
  22. };
  23. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement