Hello i am trying to turn the following variables (small, medium and large) into radio buttons
<form action="https://www.e-junkie.com/ecom/gb.php?c=cart&cl=325590&i=SEDI00001342&ejc=2" method="POST" target="ej_ejc" accept-charset="UTF-8">
<input type="hidden" name="on0" value="Size">
Size:<br>
<select name="os0">
<option value="Small">Small</option>
<option value="Medium">Medium</option>
<option value="Large">Large</option>
</select><br>
<input type="image" src="https://www.e-junkie.com/ej/ej_add_to_cart.gif" border="0" alt="Add to Cart" class="ec_ejc_thkbx" onClick="return EJEJC_lc(this.parentNode);">
</form>
I have converted to to this... However the shopping cart always chooses the last item (i,e Large) Can someone please advise?
<form action="https://www.e-junkie.com/ecom/gb.php?c=cart&cl=325590&i=SEDI00001342&ejc=2" method="POST" target="ej_ejc" accept-charset="UTF-8">
<input type="hidden" name="on0" value="Size">
Size:<br>
<input type=radio name="os0" value="Small">Small<br>
<input type=radio name="os0" value="Medium">Medium<br>
<input type=radio name="os0" value="Large">Large<br><br>
<input type="image" src="images/addtocart.png" border="0" alt="Add to Cart" class="ec_ejc_thkbx" onClick="return EJEJC_lc(this.parentNode);">