Access to controls loaded in a window

How can I access to a control in a page (textbox, option… in a form) which is loaded into a Window using window.attachURL(page)??

Hello
Something like this:

w1.attachURL('content.html'); var ifr = w1.getFrame(); var a = ifr.contentWindow.document.getElementById("contentDiv");

There is a documentation about it.
docs.dhtmlx.com/doku.php?id=dhtm … me_content

Thanks a lot!!! It has been really helpfull!!!

You are welcome!