Advertisement
Guest User

Untitled

a guest
May 6th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.53 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title></title>
  6. </head>
  7. <body>
  8.     <div class="box">
  9.         <input id="input" value="0" />
  10.         <button id="up" onclick="counter(3)">*3</button>
  11.         <p>Value <span id="output"></span></p>
  12.     </div>
  13.     <script type="text/javascript">
  14.         function counter(val) {
  15.             var value = document.getElementById('input').value;
  16.             var newValue = parseInt(value, 10) * val;
  17.             document.getElementById('output').innerHTML = newValue;
  18.             return newValue;
  19.         }
  20.     </script>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement