Free Web Hosting by Netfirms
Web Hosting by Netfirms | Free Domain Names by Netfirms

JavaScript prompt code


<body>

<script language="javascript"> //Define the script container
var userName //Define a global variable for the expected value /*
Show the prompt method with the message "Please enter your name"
with the default value for the text field being "name".
*/
userName = prompt("Please enter your name",'name')
//Write the value of userName to the document with the "Welcome back" string.
document.write("Welcome back: " + userName)
</script>
</body>


Close