I have a UL in my code
<ul>
<li><input type="radio" name="color" id="0" value="0"/>RED</li>
<li><input type="radio" name="color" id="1" value="1"/>GREEN</li>
<li><input type="radio" name="color" id="2" value="2"/>BLUE</li>
</ul>
IS there anyway to access these elements using the id's of these radio buttons directly or is it a compulsion to use JQUERY...