javascript different in acrobat and acrobat online
I have this javascript in a pdf form: var f1 = this.getField("Text88"); var f2 = this.getField("Text89"); if (f1.value == "" || f2.value == "") { event.value = "NaN"; } if (f1.value === 0 && f2.value === 0) { event.value = "0"; } if (event.value) event.value = parseFloat(event.value).toPrecision(3) and it works in adobe acrobat but not adobe acrobat online. In adobe acrobat the calculated field is blank. In adobe acrobat online there is a 0 in the calculated field. Is there a way to fix it so that the calculated field is bland in adobe acrobat online.
