I assume you're talking about when using the "iframe" option. You can directly access the iframe and change the URL it displays while the DHTML window itself is still hidden. To access the iframe created by a DHTML window instance, the code looks like this:
Code:
window.frames["_iframe-"+t.id].location.replace("http://myothersite.com")
where [icode]t.id[/icocde] is the ID of your DHTML window when you created it, for example:
Code:
var googlewin=dhtmlwindow.open("googlebox", "iframe", "http://images.google.com/", "#1: Google Web site", "width=590px,height=350px,resize=1,scrolling=1,center=1", "recal")
Then:
Code:
window.frames["_iframe-googlebox"].location.replace("http://myothersite.com")
Bookmarks