Networking | Hardware | Software | Multimedia | System | Unix&Linux | MBA

Home>>Hardware>>check if one of a group of radio buttons have been checked

check if one of a group of radio buttons have been checked

crmpicco
10-13-2005, 03:52 PM
I have a problem with my JavaScript validation.

In my JavaScript function i am trying to check if a radio button has been checked
before more code is ran.

My problem only appears when there is more than one adult.

This is my JS code if there are MORE than one adult:



kostenzahler = 0;

for (counter = 0; counter <= form.pass.length; counter++)
{
alert("CONTROL loop = " + counter);
if (document.forms["form"].elements["pass"].checked)
{
radio_choice = true;
kostenzahler = kostenzahler + 1;
}
}


This code works when there is only ONE ADULT:

if (document.forms["form"].elements["pass"].checked)
{
alert("UBERPRUFT!")
radio_choice = true;
}



This is my server-side code (ASP):
(noa = 2 for example)

<% for x = 1 to noa %>
<td id="ADTcell:<%=x%>">
<%
if CInt(x) <= CInt(noa) then
%>
<input type="radio" name="pass" id="adt<%=x%>" onMouseOver="style.cursor='hand'"/>
<%
else
response.Write "&nbsp;"
end if
%>
</td>
<% next %>

nikkiH
10-13-2005, 04:36 PM
If there is more than one, it is an array. You were *this* close. :D

kostenzahler = 0;

for (counter = 0; counter <= form.pass.length; counter++)
{
alert("CONTROL loop = " + counter);
if (document.forms["form"].elements["pass"][counter].checked)
{
radio_choice = true;
kostenzahler = kostenzahler + 1;
}
}

crmpicco
10-13-2005, 04:41 PM
if (document.forms["form"].elements["pass"][counter+1].checked)


Getting an error on that line.

The radio group is called pass


 

TOP

For more info

setting a minimum size
Auto Preview of Image 
Refresh with a query s
JS Validation obsolete
Javascript Pop up func
Slide show transitions
I'm a newbie...please!
how to write coding in
Advanced Debug Info 
.js file doesn't work 

News Archive

Adding Graphic To Text
re-direct form after s
pop up window controls
Clock on homepage - He
passing a param from a
Password Procection wi
document.title in same
focus onload 
Counting Wrong from Ri
Help needed on how to 

Related stories:

help with rollover menu
Writing form data to another value in a different window
Onload in an iframe
Using Javascript to set Stylesheet based on Browser, not Recognized
hide elements based on ID
Session Timeout - javascript
How to change the checked item on a radio type with javascript
check if any of the options value consist of

Copyright@2004-2005 www.zzcoke.com All Right Reserved

advanced web statistics