Register  |  Login




Advertisement

Start Your Own Q&A Site

Create your own Q&A site easily, allowing you to quickly grow a new community around any subject matter or generate new organic traffic for your existing website.

Question

Status: Closed Points: 75 Time: 12:55 - Sep 15, 2006  

david

In javascript how do I check which of a group of radiobuttons is checked?

this is the radiobutton group:

<input name="time_limit[]" id="time_limit[]" type="radio" value="no">
<input name="time_limit[]" id="time_limit[]" type="radio" value="yes">

I tried with:
var time_limit = document.getElementById("time_limit[]");
if (time_limit[1].checked)
...
and with
if (time_limit.value == "yes")

but none of these work

Categories

Answer Discussion
Tutorials

 

rcastagna

Date:: Sep 19, 2006

Time:: 17:18

David...

Give this a shot - it works in both IE6 and FF, so it shouldn't give you any issues cross browser...with the possible exception of Safari.

<code>
<html>
<head>
<script type="text/javascript">
 function rbCheck()
 {
  var rb = document.getElementsByName("rblist");
  for (var i = 0; i < rb.length; i++)
  {
   if (rb[i].checked)
   {
    alert("Checked: " + rb[i].value);
   }
  }
 }

</script>
</head>
<body>
 <p>
<input name="rblist" type="radio" value="Radio Button 1" />
Button 1</p>
<p>
<input name="rblist" type="radio" value="Radio Button 2" />
Button 2</p>
<p>
<input name="rblist" type="radio" value="Radio Button 3" />
Button 3</p>
<br />
<input id="btnShowChecked" type="button" value="Show Checked" onclick="rbCheck()" />

</body>
</html>
</code>

david

Date:: Oct 02, 2006

Time:: 15:25

Thank you very much, rcastagna.
I forgot to give you the points for this.

Question Answered

This question has been closed, and points have been rewarded to the following experts:


rcastagna: 75

You're welcome however to comment or give additional information or if you wish, you have the ability to write a Tutorial in the Tutorial Area.

Answer this Question

New User

Email:

Upon submission of this form, you will automatically be registered as a Quomon user and we will send your login information to this address

Registered User

Username:

Password:

Forgot Your Password?

No tutorials have been submitted yet. Want to be the first?

Answer this Question

New User

Email:

Upon submission of this form, you will automatically be registered as a Quomon user and we will send your login information to this address

Registered User

Username:

Password:

Forgot Your Password?

Ask a Question

Have a new question? Ask!

You have 100 characters to use



Top Experts

View More

Rank

Expert

Points

1.

nidhi

10354

2.

oracleofDelphi

6493

3.

rcastagna

5596

4.

LAGM

4848

5.

PeterNZ

3487

6.

gonzalo

2840

7.

Mason

2770

8.

jgivoni

2303

9.

xarcus

1820

10.

Anpanman

917

Become an Expert

Register today to share your knowledge with the community and be recognized and rewarded for your contributions.


Register Here




"Psst, Quomon is a great site. Pass it on."     Tell a Friend  |   Link To Us  |   Save to Delicious  |   Digg! Digg it



Language Options

English:

www.quomon.com

Español:

www.quomon.es