Guest User

Untitled

a guest
Nov 20th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function prompter()
  5. {
  6. var reply = prompt("What's your first name?", "")
  7. alert ( "hello " + reply + "!")
  8. rply= prompt("What's your last name?", "")
  9. alert("hello "+ reply +" "+rply);
  10. document.getElementById("demo").innerHTML=reply+" "+rply;
  11.  
  12. }
  13. </script>
  14. </head>
  15. <body onload="prompter()">
  16. <p id="demo"></p>
  17.  
  18. </body>
  19. </html>
Add Comment
Please, Sign In to add comment