Get latest news and Web Designing tutoria

Thursday, 4 June 2015

Dropdown Lists

The code to check the dropdown list is more or less the same as for radio buttons. Here it is:
Javascript code to check a dropdown lists


The only difference is in the IF Statement. Between the round brackets we have the following:
document.frmOne.hear[i].selected
Dropdown lists have a selected property at the end. This means whether an item was selected from the list or not. Again, we're looping over all of the items. Whichever item was chosen will be placed in the variable called chosen. But it's the value property we want to place in the variable. This gets you the text of the item on the list.
We want to detect if the user has left it on the default option of "None". If so, it's an error and we can ask the user to try again.
Test your code out. Don't select an item from the list. When you click the submit button you should see this:

Displaying and error message for a dropdown lists

Select an item and then click the button again. The error message will vanish.

Related Posts:

  • Javascript Comparison Operators They have used the double equal sign (== ). But there are other operators you can use besides the double equal sign. These are known as comparison operators. Here are some more of them. Remember, all these evaluate to … Read More
  • Javascript Variables In programming terminology, a variable is a storage area. You store things in variables so that you can retrieve them later. Think of variables as small boxes. You can write a number on a piece of paper then place that piece… Read More
  • Javascript IF ... ELSE This lesson continue from the  previous one You can also add an else part to your IF statements. This is for when you want to say what should happen if your IF Statement evaluates to false. As an example, change your … Read More
  • Javascript and IF Statements Javascript is what's known as a sequential programming language. This means that each and every line of code is executed from top to bottom. Quite often, however, you don't want every line to execute - you'll want more contr… Read More
  • Mathematical Operators You can use the mathematical operators with variables. This allows you to add up, multiply, subtract, and divide. The mathematical operators are these: The plus symbol ( + ) is used for addition The minus symbol ( - ) is u… Read More

0 comments:

Post a Comment