Clear text field when checkbox is unchecked
Hello,
I'm trying to write some JavaScript for new forms at work. I've been able to write a code so that when a checkbox is checked, the information from one set of fields copies over to another:
if(getField("Check Box12").value!="On")
this.getField("Applicant's Name").value = this.getField("Property Owners Name").value;
this.getField("pertyAddress").value = this.getField("Address").value;
this.getField("Contact Name1").value = this.getField("Contact Name").value;
this.getField("Phone1").value = this.getField("Phone").value;
this.getField("Postal Code1").value = this.getField("Postal Code").value;
this.getField("Cell Phone1").value = this.getField("Cell Phone").value;
this.getField("Email1").value = this.getField("Email").value;
What I'm trying to do now is if that checkbox is unchecked, have the text fields clear and reset to blank. Right now I'm trying to use this and it is not working:
if(getField("Check Box12").value!="False")
this.resetForm("Applicant's Name")
this.resetForm("pertyAddress")
this.resetForm("Contact Name1")
this.resetForm("Phone1")
this.resetForm("Postal Code1")
this.resetForm("Cell Phone1")
this.resetForm("Email1")
Any suggestions?
TIA!
