Advertisement
nauvalazhar

Calculate.html

May 21st, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Calculate</title>
  5.     <script src="jquery.min.js"></script>
  6. </head>
  7. <body>
  8.     <form>
  9.         <input type="text" id="1">+
  10.         <input type="text" id="2">=
  11.         <input type="text" id="3">
  12.     </form>
  13.     <script>
  14.         $(document).ready(function(){
  15.             var hitung = function(){
  16.                 var angka_1 = $("input#1").val(),
  17.                         angka_2 = $("input#2").val(),
  18.                 hitung = Number(angka_1) + Number(angka_2);
  19.                 $("input#3").val(hitung);
  20.             }
  21.  
  22.             $("input#1,input#2").on("keyup",function(){
  23.                 hitung();
  24.             })
  25.         })
  26.     </script>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement