Is it possible to turn a field off and on based on a check box?
I'm wondering if it is possible to write a javascript to turn off another field in a PDF form if a Check Box is checked? I'm not even close on this one below. I'm trying to figure out if someone checks check box cb144 then if will rendor another field 6a unfillable. If it's unchecked then it can be filled in. Is this possible? Thank you again if anyone has any ideas on how to code this one.
var theField = this.getField("cb144");
var theValue = theField.value;
if (theValue == "Resident") {
this.getField("6a").value= "";
}
else {
this.getField("6a").value= "";
}
