'prompt()' Example : prompt « Javascript Methods « JavaScript Reference

'prompt()' Example

    
<html>
<body>
<script language="JavaScript">
function function1() {
    window.prompt("Please, enter your full name", "Yes, here"); 
} 
</script>
<input type="button" value="Open a prompt window" onclick="function1();">
</body>
</html>

    
      
      








Related examples in the same category

1.'prompt()' Syntax, Parameters and Note
2.'prompt()' is applied to