[jQuery] Re: Very disappointed with jquery and iframe communication

2009-09-15 Thread Ricardo
You can also access the frame's contents via $('#frame_id').contents ().find('xx'), I think. On Sep 15, 9:42 am, Paolo Chiodi wrote: > Of course it doesn't work. > You are searching for node elements with id=login that are child of > your iframes. You need to use the dom of the page loaded insid

[jQuery] Re: Very disappointed with jquery and iframe communication

2009-09-15 Thread Paolo Chiodi
: > > From: Paolo Chiodi > Subject: [jQuery] Re: Very disappointed with jquery and iframe communication > To: jquery-en@googlegroups.com > Date: Tuesday, September 15, 2009, 1:42 PM > > > Of course it doesn't work. > You are searching for node elements with id=login th

[jQuery] Re: Very disappointed with jquery and iframe communication

2009-09-15 Thread ximo wallas
How can I tell to the iframe to load() a different content from the main document? --- On Tue, 9/15/09, Paolo Chiodi wrote: From: Paolo Chiodi Subject: [jQuery] Re: Very disappointed with jquery and iframe communication To: jquery-en@googlegroups.com Date: Tuesday, September 15, 2009, 1:42 PM

[jQuery] Re: Very disappointed with jquery and iframe communication

2009-09-15 Thread ximo wallas
It is firing the alert, you think it is not? How can I access it and have some control over?

[jQuery] Re: Very disappointed with jquery and iframe communication

2009-09-15 Thread Paolo Chiodi
Of course it doesn't work. You are searching for node elements with id=login that are child of your iframes. You need to use the dom of the page loaded inside the i frame try $(frames['Theiframe']).get(0).contentDocument I in the content page is present jquery, use $(frames['Theiframe']).get(0).c

[jQuery] Re: Very disappointed with jquery and iframe communication

2009-09-15 Thread Leonardo K
Are you sure that $(frames['Theiframe']) is returning the iframe ? On Tue, Sep 15, 2009 at 05:53, ximo wallas wrote: > After 1 day googling and trying I find no agreement in a solid method for > comunicating with iframe, this is the nearest point I've been to get in > touch with IFRAME: > > $(fr