Advertisement
MusicFreak

PromptBox

Feb 12th, 2013
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.30 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function prikazi()
  5. { var name=prompt("Unesite ime", "unesite ime");
  6. if (name!=null && name!="")
  7. {document.write("Zdravo"+name+"!")}
  8. }
  9. </script>
  10. </head>
  11. <body>
  12. <input type="button" onclick="prikazi()" value="Click you fool!"/>
  13. </body>
  14. </head>
  15. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement