Here is the structure of my radio buttons...
<div id="test">
<input name="test1" value="a" type="radio">
<input name="test1" value="b" type="radio">
<input name="test1" value="c" type="radio">
</div>
What is the best way to retrieve the value of a checked radio button?
I have searched through the YUI documentation but couldn't find any helpful examples.
Also, how can I access an element by its input name in YUI?