Toggle navigation
Bootsnipp
Bootstrap
For
CSS Frameworks
Bootstrap
Foundation
Semantic UI
Materialize
Pure
Bulma
References
CSS Reference
Tools
Community
Page Builder
Form Builder
Button Builder
Icon Search
Dan's Tools
Diff / Merge
Color Picker
Keyword Tool
Web Fonts
.htaccess Generator
Favicon Generator
Site Speed Test
Snippets
Featured
Tags
By Bootstrap Version
4.1.1
4.0.0
3.3.0
3.2.0
3.1.0
3.0.3
3.0.1
3.0.0
2.3.2
Register
Login
"calculator"
Bootstrap 3.0.0 Snippet by
harunpehlivan
3.0.0
Preview
HTML
View Full Screen
Fork
Fork this
2.2K
 
1 Fav
Post to Facebook
Tweet this
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> İŞTE KOD <!doctype html> <html> <head> <meta charset="utf-8"> <title>JavaScript Projects</title> <meta ID="description" content=""> <meta ID="viewport" content="width=device-width, initial-scale=1"> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> <style> #output { height: 45px; background-color: black; color: aqua; width: 100%; font-size: 2em; padding: 5px; text-align: right; margin-bottom: 25px; overflow: hidden; } #mycalcu { width: 350px; background-color: dimgray; height: 350px; padding: 5px; } .cbutton { font-size: 2em; width: 40px; margin: 4px; padding: 4px; } .container { padding: 25px; } </style> </head> <body> <div class="container"> <div id="mycalcu"> <div class="col-xs-12"> <div id="output"></div> <div class="col-xs-12"> <div class="btn btn-primary cbutton">1</div> <div class="btn btn-primary cbutton">2</div> <div class="btn btn-primary cbutton">3</div> <div class="btn btn-primary cbutton">+</div> <div class="btn btn-primary cbutton">C</div> </div> <div class="col-xs-12"> <div class="btn btn-primary cbutton">4</div> <div class="btn btn-primary cbutton">5</div> <div class="btn btn-primary cbutton">6</div> <div class="btn btn-primary cbutton">-</div> </div> <div class="col-xs-12"> <div class="btn btn-primary cbutton">7</div> <div class="btn btn-primary cbutton">8</div> <div class="btn btn-primary cbutton">9</div> <div class="btn btn-primary cbutton">*</div> </div> <div class="col-xs-12"> <div class="btn btn-primary cbutton">.</div> <div class="btn btn-primary cbutton">0</div> <div class="btn btn-primary cbutton">=</div> <div class="btn btn-primary cbutton">/</div> </div> </div> </div> </div> <script> var mybtn = document.getElementsByClassName("cbutton"); var myOutput = document.getElementById("output"); var myCal = ''; var myCom = false; var mySwitch = false; var myOpe = ["+", "-", "*", "/"]; //console.log(mybtn); for (var i = 0; i < mybtn.length; i++) { mybtn[i].addEventListener("click", function () { var myValue = this.innerHTML; if (myCom || myCal == "0") { myCom = false; myCal = ''; } if (myValue == "+" || myValue == "-" || myValue == "*" || myValue == "/") { if (mySwitch) { mySwitch = false; if (myOpe.indexOf(myOutput.innerHTML.slice(-1)) > -1) { myCal = myCal.substring(0, myCal.length - 1); } else { myCal = eval(myCal); } } mySwitch = true; } if (myValue == "=") { myValue = ''; if (myOpe.indexOf(myOutput.innerHTML.slice(-1)) == -1) { myCal = eval(myCal); } } else if (myValue == "C") { myCal = 0; myCom = true; } else if (myOutput.innerHTML.indexOf(".") > -1 && myValue == ".") { myValue = ''; } else { myCal = myCal + myValue; } myOutput.innerHTML = myCal; }); } </script> </body> </html>
Related:
See More
Free Template
Full Calendar
123.1K
215
Bootstrap Loan Calculator
Questions / Comments:
Post
Posting Guidelines
Formatting
- Now
×
Close
Donate
BTC: 12JxYMYi6Vt3mx3hcmP3B2oyFiCSF3FhYT
ETH: 0xCD715b2E3549c54A40e6ecAaFeB82138148a6c76