Can anyone tell me the correct way of addressing a form on a page that contains an
iframe from within that iframe
I tried:
function enableContinue(){
var form = document.woven;
for (var i=0; i < form.checkOptions.length; i++) {
if (form.checkOptions[i].checked) {
parent.page3form.continueButton.disabled = false;
} else {
parent.page3form.continueButton.disabled = true;
}
}
}
along with a few other attempts to no avail.
Anyone got a clue?
Cheers
Pete
--
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]