|
|
| What is a good way to open a window and have that window use an object from the calling object? I did try adding the object to the document of the open window ( a = window.open(); a.document.my_obj = this;) but that didn't seem right And it didn't work |
| montanarry, in your opened window, you can reference the 'opener' window.opener |
| ah, thanks! |