This method displays a dialog box prompting the user for some input.
<body onload=greeting()>
<script type="text/javascript">
function greeting() {
y = (prompt("Please enter your name.", "Type name
here"))
document.write("Hello " + y)
}
</script>
This example prompts the user for their name and then writes a personalized greeting to the page.