Click to See Complete Forum and Search --> : Frames...!


Topper_Harley
01-08-2003, 12:45 PM
Can you tell me how to pass some variable between a popup child window (with frames) to the opener (with frames too)?

I was using: window.opener.FormName.InputName.value (in the popup) but after creating frames in the popup it doesnt work anymore...

Help?

pyro
01-08-2003, 12:51 PM
This might work...

window.opener.top.framename.FormName.InputName.value

I'm too lazy to try it right now, so let me know. If it doesn't work, I can look at it a bit more. :)

Topper_Harley
01-08-2003, 02:15 PM
Didnt work....maybe its because the opener frame is, actually, a frameset with two frames?

Thanks anyway.

Zach Elfers
01-08-2003, 02:16 PM
Try window.opener.parent.frameName.formName.fieldName.value

Topper_Harley
01-09-2003, 02:01 PM
No luck :(

Weird...