I have some straight HTML code
<input type="radio" name="GRSReboot" value="1" checked >On</input>
<input type="radio" name="GRSReboot" value="2" >Off</input>
I need to set the checked value of the field using jquery.
I do not want to use the runat=server options, so i need to know, how do i tell JQuery to set the value of the radio button group?
thank you
Edit - The controls are a radio button group, and i need to set one of the controls as checked based on a value returned from the server. thank you