Question
Check if two fields have same value
I am trying to write a script that verifies that fieldA and fieldB do not contain identical strings. And alerting the user if they are the same. I have the following script (located in the validation of fieldB, but when I enter the same text in both boxes, no alert appears.
if(this.getfield("fieldA".value) == event.value) {
app.alert("Must be different than fieldA");
}
