Javascript built-in function Prompt
1 2 3 4 5 |
function mypropmt() { var response = prompt("Hi, Whats your name?", "") alert(response) } |
1 2 3 4 5 6 7 8 9 |
<script type="text/javascript"> function mypropmt() { var response = prompt("Hi, Whats your name?", "") alert(response) } </script> |