Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <script type="text/javascript">
- function enter_name()
- {
- var name=prompt("Please enter your name","Artem");
- if (name!=null && name!="")
- {
- document.write("Hello " + name + "! How are you today?");
- window.stop();
- }
- }
- function enter_age()
- {
- var age=prompt("Please enter your age","27");
- if (age!=null && age!="")
- {
- document.write("You are " + age + " years old.");
- window.stop();
- }
- }
- </script>
- </head>
- <body>
- <input onclick="enter_name()" type="button" value="Name" />
- <input onclick="enter_age()" type="button" value="Age" />
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment