Hi mal wieder g
Hab mal wieder 'n kleines (?) Problem:
Will ein <Div> rechts unten (z.B.) plazieren (natürlich unabhängig von der Auflösung). Hab das mal so probiert, aber es klappet nitt:
<script LANGUAGE="JavaScript"> <!-- netscape = (document.layers) ? 1:0 goodIE = (document.all) ? 1:0 if (netscape) { var x1 = window.innerWidth - 120; var y1 = window.innerHeight - 50; } else if (goodIE) { x1 = document.body.clientWidth - 120; y1 = document.body.clientHeight- 50; } alert(x1+" "+y1); //zeigt die korrekten Werte an !!!
document.write("<div style='position:absolute; top:'+y1+'px; left:'+x1+'px'>"); document.write("<font size=1>letzte Änderung: 07.07.99</font>"); document.write("<br><img src='bildchen.gif' border=0 width=88 height=31 ALT="TEST"); document.write("</div>"); //--> </script>
Vielleicht hilft das ja: das ganze läuft innerhalb einer Frameseite ab. Da sind auch noch andere <div>s aber daran kann's ja nicht scheitern, oder doch?
The Dot