help to modify Javascript
hi, i'm using bellow calculating script & it's working. what i want to do is, if any of field is empty, calculation result field should be empty. pls help me. thanks in advance. thanks..
var v1 = Number(this.getField("amt11").value);
var v2 = Number(this.getField("EX").value);
if (v1==0) event.value = "";
else event.value = v1/v2;
