moin,
wie kann ich per javascript ein fenster öffnen, dass nur einen rahmen hat.
also keine statuszeile, toolbar oder menüleiste.
aloha,
thorsten

moin,
wie kann ich per javascript ein fenster öffnen, dass nur einen rahmen hat.
also keine statuszeile, toolbar oder menüleiste.
aloha,
thorsten
nichts leichter als das ;_)
Hier ein Script:
<head><SCRIPT language=JavaScript>
<!--
function Go(x)
{
if(x == "nothing")
{
document.forms[0].reset();
document.forms[0].elements[0].blur();
return;
}
else if(x == "end") top.location.href = parent.frames[1].location;
else
{
parent.frames[1].location.href = x;
document.forms[0].reset();
document.forms[0].elements[0].blur();
}
}
//-->
</SCRIPT>
<SCRIPT language=JavaScript>
<!--
function foto_dl(file1)
{
box1 =
window.open(file1,"_blank","toolbar=no,scrollbars=no,directories=no, status=no,menubar=no,resizable=no,width=500,height=245");
box1.focus();
}
//-->
</SCRIPT></head>
<body><A class=dl
onmouseover="window.status='Foto'; return true"
onmouseout="window.status=''"
href="javascript:foto_dl('datei2.htm')">Hier klicken</A></body>
P.S. Lange nicht mehr hier gewesen thorsten, freut mich, von dir zu lesen ;-)