Hallo Zusammen
Ich habe eine HTML Seite erstellt (siehe unten).
In der Seite definiere ich die Größe (800X600) und die Position(10,10).
Mein frage: Was gebe ich ein um die SCROLLBARS und LINK Fenster abzuschalten?
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta name="generator" content="Damian Brausch">
<title>Fenster1</title>
<Script language="JavaScript">
function fenster()
{
window.resizeTo(800,600);
window.moveTo(10,10);
}
</script>
</head>
<body bgcolor="#ffffff" onLoad="javascript:fenster()" >
<table cool width="800" height="600" usegridx usegridy showgridx showgridy gridx="16" gridy="16" border="0" cellpadding="0" cellspacing="0">
<tr height="16">
<td width="799" height="16" colspan="3"></td>
<td width="1" height="16"><spacer type="block" width="1" height="16"></td>
</tr>
<tr height="583">
<td width="32" height="583"></td>
<td width="208" height="583" align="left" xpos="32" content valign="top" csheight="112">Das ist ein Test</td>
<td width="559" height="583"></td>
<td width="1" height="583"><spacer type="block" width="1" height="583"></td>
</tr>
<tr height="1" cntrlrow>
<td width="32" height="1"><spacer type="block" width="32" height="1"></td>
<td width="208" height="1"><spacer type="block" width="208" height="1"></td>
<td width="559" height="1"><spacer type="block" width="559" height="1"></td>
<td width="1" height="1"></td>
</tr>
</table>
<p></p>
</body>
</html>