Advertisement
Guest User

Untitled

a guest
Feb 15th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Source Code JavaScript</title>
  5. <script type="text/javascript">
  6. window.onload=function()
  7. {
  8. /*
  9. login: Nama form
  10. username : nama elemen input
  11. pass: nama elemen input
  12. */
  13. var username=document.login.username;
  14. var pass=document.login.pass;
  15. username.onkeyup=function()
  16. {
  17. //hasil : nama form
  18. //user  : id elemen
  19. document.hasil.user.value=username.value;
  20. }
  21. pass.onkeyup=function()
  22. {
  23. //pass : id elemen
  24. document.hasil.pass.value=pass.value;
  25. }
  26. }
  27. </script>
  28. </head>
  29. <body>
  30.  
  31. <form name="login">
  32. <input name="username" type="text">
  33. <input name="pass" type="password">
  34. </form>
  35. <br>
  36. <form name="hasil">
  37. <input id="user" type="text">
  38. <input id="pass" type="text">
  39. </form>
  40.  
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement