It appears that the 9.0.1.2 of storefront is using a snippet of javascript code from the old version of storefront:
Code:
function SetCartVariant(selValue){
//alert("AddToCartForm_"+prodid+"_"+varid);
var theForm = document.forms["AddToCartForm__5"];
if(selValue==''){
alert('Please select a variant to add to the cart');
return false;
}
else {
theForm.VariantID.value=selValue;
VariantMinimumQty__5 = VarMinQty[selValue];
SelectedVariantInventory__5 = VarInventory[selValue];
}
}
There is no object: document.forms["AddToCartForm__5"] on this page. The only form is the top-level form on the master page document.forms["aspnetForm"].
If I override this function with my own function in the product page template, the error does not occur.
Code:
<script type="text/javascript">
function SetCartVariant(selValue){
var theForm = document.forms["aspnetForm"];
if(selValue==''){
alert('Please select a variant to add to the cart');
return false;
}
else {
var $variantID = jQuery('input:hidden[id*="VariantID_"]');
if($variantID.length>0){ $variantID.val(selValue); }
//theForm.VariantID.value=selValue;
VariantMinimumQty__5 = VarMinQty[selValue];
SelectedVariantInventory__5 = VarInventory[selValue];
}
}
</script>
I used jQuery to locate the hidden input field with the correct ID, since the current version of this function is specifying "theForm.VariantID" which also does not exist.
In addition, it seems no matter what variant you select from the drop down, the only one that gets added to the cart is the default variant.