Advertisement
dysphafiz_

Untitled

Sep 10th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Interface dengan JS (M. Hafidz Fadillah - XI RPL 2)</title>
  5.     <link rel="stylesheet" type="text/css" href="interface.css">
  6. </head>
  7. <div class="bgtest">
  8. <body>
  9. <p id="coba">
  10.     <script type="text/javascript">
  11.         function sayHalo() {
  12.             var nm = document.getElementById('nama').value;
  13.             alert("Halo, "+nm);
  14.         }
  15.     </script>
  16.     <label>Tulis di sini</label>
  17.     <input type="text" id="nama" onchange="sayHalo();">
  18. </p>
  19. </body>
  20. </div>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement