benderos
Mitglied
Hallo Zusammen,
ich habe nicht besonders viel Ahnung von javascript.
Ich habe hier ein statisches Menü:
Diese Menü befindet sich allerdings immer rechts oben. Auf die Eingabe von 'right' kam ein Reaktion, allerdings nicht auf 'bottom' oder 'top'. Ich möchte das Menü auf einer bestimmten Höhe plazieren. Danke schon mal im Voraus.
Tschau
benderos
ich habe nicht besonders viel Ahnung von javascript.
Ich habe hier ein statisches Menü:
Code:
<html>
<head>
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Kundenanlagen Axapta A</title>
<script language="JavaScript">
<!-- Begin
function setVariables() {
if (navigator.appName == "Netscape") {
v=".top=";
dS="document.";
sD="";
y="window.pageYOffset";
}
else {
v=".pixelTop=";
dS="";
sD=".style";
y="document.body.scrollTop";
}
}
function checkLocation() {
object="object1";
yy=eval(y);
eval(dS+object+sD+v+yy);
setTimeout("checkLocation()",10);
}
// End -->
</script>
</head>
<body OnLoad="setVariables();checkLocation()" bgcolor="#D9ECFF">
<div align="center">
<table border="0" width="63%" id="table1" cellpadding="2">
<tr>
<td>
<p align="center"><font size="6" color="#0000FF" face="Tahoma">Kundenanlagen Axapta<br>
</font><font size="5" color="#0000FF" face="Tahoma">Bitte Auswahl
anklicken</font><font size="6" color="#0000FF" face="Tahoma"><br>
</font></td>
</tr>
</table>
</div>
<div align="center">
<table border="0" width="726" id="table2" cellspacing="6">
<tr>
<td width="122" height="60" align="center">
</td>
<td width="594" nowrap height="60">tes</td>
</tr>
<tr>
<td width="122" height="60" align="center">
</td>
<td width="594" nowrap height="60">test</td>
</tr>
<tr>
<td width="122" height="60" align="center">
</td>
<td width="594" nowrap height="60">test</td>
</tr>
<tr>
<td width="122" height="60" align="center">
</td>
<td width="594" nowrap height="60">test</td>
</tr>
<tr>
<td width="122" height="60" align="center">
</td>
<td width="594" nowrap height="60">test</td>
</tr>
<tr>
<td width="122" align="center"> </td>
<td width="594" nowrap>test </td>
</tr>
<tr>
<td width="122" align="center"> </td>
<td width="594" nowrap>
test </td>
</tr>
<tr>
<td width="122" align="center"> </td>
<td width="594" nowrap>
test<p> </td>
</tr>
<tr>
<td width="122" align="center"> </td>
<td width="594" nowrap>
test<p> </td>
</tr>
<tr>
<td width="122" align="center"> </td>
<td width="594" nowrap>
test<p> </td>
</tr>
<tr>
<td width="122" align="center"> </td>
<td width="594" nowrap>
</td>
</tr>
<tr>
<td width="122" align="center"> </td>
<td width="594" nowrap>
</td>
</tr>
<tr>
<td width="122" align="center"> </td>
<td width="594" nowrap>
</td>
</tr>
<tr>
<td width="122" align="center"> </td>
<td width="594" nowrap>
</td>
</tr>
</table>
</div>
<p align="right"> <p align="right">
<div id="object1" style="position:absolute; visibility:show; right:3px; z-index:0; bottom:504px; width:198px">
<table width=130 border=0 cellspacing=1 cellpadding=0>
<tr>
<td height="28" nowrap><center><font face="Arial">zurück zur Hauptseite</font></center></td>
</tr>
</table>
</div>
</body>
</html>
Diese Menü befindet sich allerdings immer rechts oben. Auf die Eingabe von 'right' kam ein Reaktion, allerdings nicht auf 'bottom' oder 'top'. Ich möchte das Menü auf einer bestimmten Höhe plazieren. Danke schon mal im Voraus.
Tschau
benderos