Checkbox Autosum Using JavaScript

In this article we create Checkbox Autosum using JavaScript. The program will automatically calculate the total cost of an item base on the checked input boxes. The trick of this code is that you need to bind all the check boxes with unique identifiers in order to get the value and calculate the sum by using Number(). To learn more about this, just follow the steps below.

Getting started:

First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.         <head>
  4.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
  6.         </head>
  7.         <nav class="navbar navbar-default">
  8.                 <div class="container-fluid">
  9.                         <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  10.                 </div>
  11.         </nav>
  12.         <div class="col-md-3"></div>
  13.         <div class="col-md-6 well">
  14.                 <h3 class="text-primary">Checkbox Autosum Using JavaScript</h3>
  15.                 <hr style="border-top:1px dotted #ccc;">
  16.                 <div class="col-md-4">
  17.                         <center><h3 class="text-info">SHAKE STAND</h3></center>
  18.                         <div class="form-inline">
  19.                                 <div class="form-inline">
  20.                                 <label>Total Purchase</label>
  21.                                         <input type="text" id="total" disabled="disabled"/>
  22.                                 </div>
  23.                         </div>
  24.                         <br />
  25.                         <div class="form-group">
  26.                                 <label><input type="checkbox" value="250" id="p1" onclick="autoSum(this);"> Milk, Price: 250</label>
  27.                                 <label><input type="checkbox" value="350" id="p2" onclick="autoSum(this);"> Strawberry, Price: 350</label>
  28.                                 <label><input type="checkbox" value="400" id="p3" onclick="autoSum(this);"> Mocha, Price: 400</label>
  29.                                 <label><input type="checkbox" value="350" id="p4" onclick="autoSum(this);"> Watermelon, Price: 350</label>
  30.                                 <label><input type="checkbox" value="350" id="p5" onclick="autoSum(this);"> Watermelon, Price: 350</label>
  31.                                 <label><input type="checkbox" value="300" id="p5" onclick="autoSum(this);"> Mango, Price: 300</label>
  32.                         </div>
  33.                 </div>
  34.         </div>
  35. <script src="js/script.js"></script>   
  36. </body>
  37. </html>

Creating the Script

This code contains the script of the application. The code will auto calculate the sum of all products. To do this just copy and write these block of codes inside the text editor, then save it as script.js inside the js folder.
  1. var total=0;
  2. function autoSum(elem) {
  3.  
  4.     if (elem.checked == true) {
  5.                 total += Number(elem.value);
  6.         }else{
  7.                 total -=Number(elem.value);
  8.         }
  9.  
  10.         document.getElementById('total').value = total.toFixed(0);
  11. }
There you have it we successfully created a Checkbox Autosum using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Add new comment