Click to See Complete Forum and Search --> : more help with window.opener


Bryan Tuffin
01-14-2003, 06:24 PM
I have been using window.opener to access data from the first window and it works fine. but when I try to access data from a frame in that window it will not work. I have tried this. window.opener.document.frames.toppage.forms.formtest1.test1.value but I get the runtime error window.opener.document.frames.toppage.forms.formtest1 is null or not an object. can anyone help me with this.

pyro
01-14-2003, 06:42 PM
I think this would be the correct syntax

window.opener.top.framename.document.formname.inputname.value

Bold specifies fields to change...

Bryan Tuffin
01-14-2003, 07:33 PM
I gave it a try but it still will not work. I keep geting the same error message can anyone help me here.