Advertisement
koki2000

tamasnak

Nov 29th, 2018
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.61 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7.  
  8.     <title>form</title>
  9.  
  10.     <meta name="description" content="Kovács Csaba">
  11.     <meta name="author" content="Kovács Csaba">
  12. </head>
  13. <body>
  14. <p id="price">...</p>
  15. <form>
  16. <input id="het" type="number" value="1">
  17. </form>
  18.  
  19. <script>
  20. var het =document.getElementById('het').addEventListener('change', function() {
  21.     var price = document.getElementById('price');
  22.     price.innerText = (this.value * 0.5);
  23. });
  24. </script>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement