Hi, kann mir bitte jemand sagen warum folgender Code keine bgcolor mehr anzeigt, es aber ohne document.write() locker klappt?
(PS: Events gibts auch nicht mehr ... er hängt wohl)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>demo</title>
</head>
<body bgcolor="#000000" onLoad="initIt()">
<script language="JavaScript">
// function init
function initIt(){
document.write();
}
</script>
</body>
</html>
Danke,
Torsten