|
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>
|
|
Expert:
|
rcastagna
|
|
Date:
|
Sep 19, 2006
|
|
Time:
|
17:18
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
Thank you very much, rcastagna.
I forgot to give you the points for this.
|
|
Expert:
|
david
|
|
Date:
|
Oct 02, 2006
|
|
Time:
|
15:25
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
|
|
|
|
This question has been answered, and points have been rewarded to the following experts:
You're welcome however to comment or give additional information or if you wish, you have the ability to write an Answer Summary for this question by clicking on the "Answer Summaries" Tab.
|
|