Avatar

Correct answer by
Level 10

Hi,

If each part of the form is in its own subform, then you can by targeting the subform that you want to validate. For example the topSection email button would have in the click event:

if (topSection.execValidate() == true) {

     // send email script

}

else {

     // warn user script

}

Hope that helps,

Niall

View solution in original post