Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.
function calc() {
var pc = 25.00;
var price = 0;
var currency = " Ls";
if (document.formName.HDD[0].checked==true) {
price = 0.00;
} else if (document.formName.HDD[1].checked==true) {
price = 3.30;
} else if (document.formName.HDD[2].checked==true) {
price = 2.21;
} else if (document.formName.HDD[3].checked==true) {
price = 1.00;
}
document.formName.textInput.value = (pc + price).toFixed(2) + currency;
}
1 to 4 of 4