Hallo,
Die Anweisung
document.body.appendChild(mausTip);
führt zu folgender Konsolenmeldung (FF): "document.body has no properties"...
Also das ganz einfache Beispiel:
<!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" lang="de" xml:lang="de">
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<title>test</title>
<script type="text/javascript">
// <![CDATA[
[code lang=javascript]
function test() {
var mausTip = document.createElement("div");
document.body.appendChild(mausTip);
mausTip.innerHTML = 'test';
}
window.onload = test;
// ]]>
</script>
</head>
<body>
</body>
</html>
[/code]
funktioniert einwandfrei.
Gruß, Jan