Local Hero
05-30-2005, 05:28 AM
Why won't this work?
if (document.forms.myform.htfront.value=checked) document.forms.orderform_16180.colorside1.value = 'Print on Front';
if (document.forms.myform.htback.value=checked) document.forms.orderform_16180.colorside2.value = 'Print on Back';
if (document.forms.myform.htrsleeve.value=checked) document.forms.orderform_16180.colorside3.value = 'Print on Right';
if (document.forms.myform.htlsleeve.value=checked) document.forms.orderform_16180.colorside4.value = 'Print on Left';
I want it to display the text if the box is checked.
if (document.forms.myform.htfront.value=checked) document.forms.orderform_16180.colorside1.value = 'Print on Front';
if (document.forms.myform.htback.value=checked) document.forms.orderform_16180.colorside2.value = 'Print on Back';
if (document.forms.myform.htrsleeve.value=checked) document.forms.orderform_16180.colorside3.value = 'Print on Right';
if (document.forms.myform.htlsleeve.value=checked) document.forms.orderform_16180.colorside4.value = 'Print on Left';
I want it to display the text if the box is checked.