[jQuery] Re: Accessing window DOM through jQuery Core - can't get it to work

2009-06-30 Thread Cesar Sanz
Query] Re: Accessing window DOM through jQuery Core - can't get it to work You're opening a blank window; it has no DOM to manipulate (you'd have to resort to document.write). On Jun 23, 4:29 pm, ieatsleepsurf wrote: Goal: From window A, I want to manipulate the DOM of window

[jQuery] Re: Accessing window DOM through jQuery Core - can't get it to work

2009-06-24 Thread mkmanning
You're opening a blank window; it has no DOM to manipulate (you'd have to resort to document.write). On Jun 23, 4:29 pm, ieatsleepsurf wrote: > Goal: From window A, I want to manipulate the DOM of window B, where > window B is the result of calling window.open(). > > My attempts are shown below,