i have following radio button structure ...
<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>
how would i go about retrieving the value of any checked radio button?
i have checked the YUI documentation an there is not really any good example.
I would also like to know how to get the element by input name in YUI?