Hallo,
hab hier noch ein Problem, bei dem ich nicht weiterkomme. Hier der Quelltext, es funktioniert eigentlich alles ganz gut, die JS-Funktionen und das HTML. Aber zusammen funktioniert das ganze irgendwie nicht:
<body onLoad="CallFunctions()"> // So geht das nicht
<body> // So geht alles
Also, je nachdem wie mein Body-Tag ist, funzt das oder nicht. Wieso ist das so?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> </title>
<link rel="stylesheet" href="style.css" />
<script src="Functions.js" type="text/javascript">
<!--
//-->
</script>
</head>
<body onLoad="CallFunctions()">
<table class="TopTable" cellspacing="0" cellpadding="0">
<tr>
<td class="Top"></td>
</tr>
</table>
<table class="CenterTable" cellspacing="0" cellpadding="0">
<tr>
<td class="Left"></td>
<td class="Middle"> </td>
<td class="Right"> </td>
</tr>
</table>
<div id="PicLogo1"></div>
<div id="PicLogo2"></div>
<div id="PicLogo3"></div>
<div id="TextURL"> </div>
<div id="TextLinks"> Impressum Kontakt </div>
</body>
</html>