Need help with a javascript
I want to add $3.00 to a field if a checkbox is checked.
If the box is not checked than the original amount entered is not changed.
EFS_FEE is the checkbox name
LUMPER_FEE is the textbox with a value - which could potentially be "0" or any number.
I've tried this and with no luck:
var Lumper = this.getField("LUMPER_FEE")
var Fee = this.getField("EFS_FEE");
if fee.value!="Off"
var Fee = 3
else
var Fee = 0
event.value = Lumper + Fee
