Contact: aviboots(AT)netvision.net.il
39,560 questions
51,419 answers
573 users
<!DOCTYPE html> <html> <script> function user_input() { var r = prompt("Write Your Language"); document.write(r); } </script> <body> <input type="button" value="prompt" onclick="user_input()"/> </body> </html>