Hi,
hat jemand eine Idee, warum man im Opera in neu geöffneten Fenstern keine Images laden kann?
In dem folgenden Codebeispiel wird die Überschrift <h3> noch angezeigt, das Bild jedoch nicht mehr.
Im MSIE und NN funktioniert's.
Gruß,
Stefan
<html>
<head>
<title>Test</title>
<script language="JavaScript" type="text/javascript">
<!--
function fdw()
{
var w = open("", "bla", "width=300,height=200")
w.document.open('text/html')
w.document.writeln('<html><head><title>Test</title></head><body onLoad="self.focus()">')
w.document.writeln('<h3>Test</h3>')
w.document.writeln('<img src="test.gif">')
w.document.writeln('</body></html>')
w.document.close()
}
//-->
</script>
</head>
<body>
<a href="javascript:fdw()">Test</a>
</body>
</html>