Hi,

you first need to get the iframe document. With instances of 
qx.ui.embed.Iframe, try getDocument().body.

Example:

var iframe = new qx.ui.embed.Iframe("http:/www.example.org");
iframe.addListener("load", function(e){
  console.log("iframe body", iframe.getDocument().body);
});
this.getRoot().add(iframe);

Note that the document you're adding the iframe to and the source of the iframe 
must be of the same origin for this to work. Following the example above, you 
would have to serve the document from www.example.org.

Hope this helps!

Regards
Tristan


Am 15.11.2010 um 12:16 schrieb Mig:

> 
> Hello,
> 
> I was wondering if it is possible to get the content of an iFrame in
> qooxdoo. F. i. if i have this code:

------------------------------------------------------------------------------
Centralized Desktop Delivery: Dell and VMware Reference Architecture
Simplifying enterprise desktop deployment and management using
Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
client virtualization framework. Read more!
http://p.sf.net/sfu/dell-eql-dev2dev
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to