Hi, I posted a question a couple of weeks ago but didn't get a response. Even if you don't know for sure, any ideas might help!
What I want to do seems pretty simple. I want to pop open a window from a page, and from the parent I would like to use ready() to know when the popup's DOM is ready. So I open the window and get a valid window handle called 'popup'. >From the parent window, I try to use this: $(popup.document).ready(function() { ... }); But it doesn't work. From what I ready in the documentation, I thought I could pass a window handle. Anyone see where I'm going wrong?