Get latest news and Web Designing tutoria

Thursday, 4 June 2015

Radio Buttons

Checking radio buttons on a form is a little trickier. You have to loop through each button, testing for a value of checked, which means it was selected. Only one radio button in a group can be selected, so if you find a value of checked you can break out of the loop.
If no radio button was checked then you can return a value of false. If any one of them is checked then you can return a value of true. Here's the code for your radio button function:

Javascript function to check radio buttons


First we set up a variable called payment and set it to be a blank string. This will hold a value of checked if the user has selected a radio button and will be empty otherwise. The next line is this:
var len = document.frmOne.payment.length;
On the right of the equal sign we again try to access a form element. This time, the element we want has a name of payment. This came from the HTML:
<INPUT TYPE="Radio" Name="payment" Value="CC">Credit Card
<INPUT TYPE="Radio" Name="payment" Value="DC">Debit Card
<INPUT TYPE="Radio" Name="payment" Value="PP">PayPal
If you want to group radio buttons together you give them the same name. You can then access this name in your code. But look at what is now on the end:
document.frmOne.payment.length;
When we accessed the text box element like this we had value on the end. This time we have length. Length is how many radio button are in the group. We can use this length in the loop:
for (i = 0; i < len; i++) {
if ( document.frmOne.payment[i].checked ) {
payment = document.frmOne.payment[i].value;
break;
}
}
The loop goes round and around while the variable called i is less than the length of the radio buttons. Inside of the loop we have this:
if ( document.frmOne.payment[i].checked ) {
payment = document.frmOne.payment[i].value;
break;
}
This IF statements checks each radio button for a value of checked. But we can't just say:
document.frmOne.payment.checked
The payment part refers to the whole group of radio buttons. To get at each individual radio button you can use a pair of square brackets. Inside the square brackets you type a number. The number corresponds to a particular button. So payment[0] is the first button, payment[1] is the second button, and so on. If the IF statement detects that any one of these buttons has a value of checked it puts that value into the payment variable:
payment = document.frmOne.payment[i].value;
We can then break out of the loop because we know that the user has selected a radio button.
The IF statement after the loop checks what's inside the variable called payment. It does exactly the same thing as the email check box. The only difference is that it places an error message besides the radio buttons rather than besides the text box.
Test it out. Click your submit button without selecting a radio button. You should see this:

Testing for errors in radio buttons

Now select a payment option. Click the button again and the error message will disappear.

Related Posts:

  • Function Arguments in Javascript You can pass values over to your functions. These values are called arguments, and they go between the round brackets of the function. If you have more than one value to pass over, you separated them with commas. Let's look … Read More
  • Javascript Functions The scripts we have at the moment are set to run as soon as the page loads in the browser. But they don't have to. A better way is to put the code inside something called a function. A function is just a separate code segmen… Read More
  • Javascript Arrays A normalJavascript variable like var age = 18 holds a single piece of data. An array is a way to hold more than one piece of data under the same name. There's a few ways to set up an array but the simplest looks l… Read More
  • Javascript Dates and Time The first thing you need to do is to create a new Date object: var the_date = new Date(); Note the use of the keyword new. After a space you type the word Date (capital "D"). This is followed by a pair of round brack… Read More
  • Javascript while loops While loops (lowercase "w") are another programming tool you can add to your armoury. Here's the structure of a while loop: while ( condition_to_test ) { } Instead of the word "for" this time type while. After a sp… Read More

0 comments:

Post a Comment