Manne: Fenster im Fenster

Beitrag lesen

Hallo Thomas,

Du kannst das ganze mit <IFRAME> fuer IE und <LAYER> fuer NS machen.

Ich habe das so schon einmal in etwa so gemacht:
------ HTML Teil ------
<iframe name="FrameName" width="290" height="310" src="HTMLDateiName.htm" scrolling="no" style="position:absolute; left:210px; top:20px;">
<LAYER id="FrameName" left="210" top="20" width="290" height="310" src="HTMLDateiName.htm">
</LAYER>
</iframe>

Zum wechseln der angezeigten Dateien:
------ JavaScript Teil --------
if (document.layers)
  { document.FrameName.load('HTMLDateiName.htm'); }
else
  { document.FrameName.location.href='HTMLDateiName.htm'; }
-------------------------------

Ich hoffe das hilft Dir weiter.

Gruss
Manne