I am currently working with check boxes and displaying values based on the values chosen. Almost everything is working in exception that i have to check boxes for method of shipping. Right now the user can select two ways and this is an issue. Is there a way to only allow one check box to be checked for method of shipping? EXAMPLE
JS
<script>
function check_value(currentElement, val, id, type) {
var el = document.getElementById("imgBox" + id);
if (val > 0 && val < 4) { //will trigger when [1,2,3]
if(currentElement.checked)
{
el.src = "images/" + type + val + ".jpg";
el.style.display = "";
}
else
{
el.src = "";
el.style.display = "none";
}
}
}
</script>
HTML
<h2>Choose method of shipping</h2>
<form name="shipping_list">
<input type="checkbox" name="shipping1" onclick='check_value(this, 1, "4", "shipping")'/> USPS Ground<br />
<input type="checkbox" name="shipping2" onclick='check_value(this, 2, "4", "shipping")'/> FedEx
</form>
<img id="imgBox4" src="#" style="display:none">
You should use radio buttons instead:
The key is the
nameattribute, the value should be same for all the radio buttons that belong to one group.