Use do-while loop and prompt dialog to restrict user input : do while « Language Basics « JavaScript DHTML






Use do-while loop and prompt dialog to restrict user input

 

<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">

do {
    sometext = prompt("Enter some text","Type some text");
}
while (sometext == "Type some text" || sometext == "" || sometext == null);
alert(sometext);

</script>
</head>
<body>

</body>
</html>

   
  








Related examples in the same category

1.Combine do-while loop and prompt dialog to read user input