Advertisement
Guest User

BuatInterfaceTextBoxtoAlert

a guest
Sep 15th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <title>Vadlan Ramdani-XIRPL3</title>
  6.   </head>
  7.   <body>
  8.     <script type="text/javascript" language="javascript">
  9.       function sayHalo()
  10.       {
  11.         var nm = document.getElementById('nama').value;
  12.         alert("Halo, " + nm);
  13.       }
  14.     </script>
  15.     <label>Tulis Disini</label>
  16.     <input type="text" id="nama" onchange="sayHalo();">
  17.   </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement