Jump to content

Welcome to Geeks to Go - Register now for FREE

Need help with your computer or device? Want to learn new tech skills? You're in the right place!
Geeks to Go is a friendly community of tech experts who can solve any problem you have. Just create a free account and post your question. Our volunteers will reply quickly and guide you through the steps. Don't let tech troubles stop you. Join Geeks to Go now and get the support you need!

How it Works Create Account
Photo

javascript


  • Please log in to reply

#1
relegation

relegation

    New Member

  • Member
  • Pip
  • 1 posts
Hi All,
New to this so please bear with me and also let me know if i am in the wrong topic. Having trouble understanding how to create a loop that wants me to input a string of 8 charecters or above. Loop to ask for more than eight if less than 8 inputed . Apoligies if this is a simplistic request but thats my limit.
thanks to all.
  • 0

Advertisements


#2
stettybet0

stettybet0

    Trusted Tech

  • Technician
  • 2,579 posts
This is a simple script do this through pop-up windows.

<script type="text/javascript">
for (;;) {
   var input = prompt("Input 8 or more characters.", "");
   if (input.length < 8) {
	  alert("Enter 8 or more characters this time please!")
   }
   else {
	  alert("You entered 8 or more characters! Thanks!");
	  break;
   }
}
</script>

Ask if you don't understand anything.
  • 0






Similar Topics

0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users

As Featured On:

Microsoft Yahoo BBC MSN PC Magazine Washington Post HP