Hello out there....
I have a javascript that goes like this:
Can anyone tell me what could wrong...???
Thanks!
I have a javascript that goes like this:
Code:
<script language="javascript"> function checkFields9(){ if (shopform.totalhwtemp.value<=16) { return true }else{ shopform.hw.value = "0.00" shopform.priceperpiece.value = "0.00" shopform.subtotal.value = "0.00" shopform.total.value = "0.00" shopform.totalbund.value = "0.00" document.getElementById("skjulpris").style.display = "block"; document.getElementById("vispris").style.display = "none"; document.getElementById("upload").style.display = "none"; alert("---IMPORTANT INFORMATION !---\n\n\The requested quantity is larger than 16 dm2 (1 production panel) and at the moment not available.\n\n\Please change quantity or direct this enquiry to sales@printline.dk or by phone + 45 66 10 74 60.\n\n\All quantities will soon be an option on our webshop.") return false } } </script>
Thanks!
Comment