The default value of one on my radio boxes on my page is set to checked. I noticed that when I change the selection and reload the page, the check goes back to the default value. I was wondering whether there is a way in JavaScript to programatically set the value checked property of my radio elements.
This is my html:
<body>
<TD><INPUT TYPE="radio" NAME="Performer" VALUE="Aitken" >Aitken</TD>
<TD><INPUT TYPE="radio" NAME="Performer" VALUE="Coltrane" CHECKED>Coltrane</TD>
<TD><INPUT TYPE="radio" NAME="Performer" VALUE="Julliard" >Julliard</TD>
<TD><INPUT TYPE="radio" NAME="Performer" VALUE="Kronos" >Kronos</TD>
<TD><INPUT TYPE="radio" NAME="Performer" VALUE="Waits" >Waits</TD>
<input type="submit" id="submit_button"name="sunmit">
</body>