I gather you mean how to create a link within the DHTML window contents that updates this window with new content. Well, just for sake of discussion, a link that's outside this window and on your main page that does this looks like:
Code:
<a href="#" onClick="googlewin.load('iframe', 'http://cssdrive.com', 'CSS Drive'); return false">Load new site into window</a>
So the question is, is the syntax different when I'm adding such a link inisde the DHTML window page instead? In the case of a IFRAME based DHTML window, yes. The above would look like:
Code:
<a href="#" onClick="parent.googlewin.load('iframe', 'http://cssdrive.com', 'CSS Drive'); return false">Load new site into window</a>
instead. In the case of INLINE and Ajax based DHTML windows, no, there is no difference. Just use the same link you would use on your main page to alter the DHTML window's content as you would inside the DHTML window instead.
Bookmarks