I have
<td><span style="font-size:10pt;fontweight:bold;">Sold</span></td>
<td><input id="Sold" type="radio" name="Sold" Checked Value="1">Yes
<input id="Sold" type="radio" name="Sold" Value="0">No
</td>
How can I set the value from 1 to 0 with javascript?
I'm trying
document.MyForm.Sold.value = "0";
But that is not working.
Thanks!
<td><span style="font-size:10pt;fontweight:bold;">Sold</span></td>
<td><input id="Sold" type="radio" name="Sold" Checked Value="1">Yes
<input id="Sold" type="radio" name="Sold" Value="0">No
</td>
How can I set the value from 1 to 0 with javascript?
I'm trying
document.MyForm.Sold.value = "0";
But that is not working.
Thanks!