Quellcode:
Zugriff auf document von Fenster verweigert
<html>
<head>
<title>Frames</title>
</head>
<body>
<iframe
src="http://i44www.info.uni-karlsruhe.de" name="Fenster">
</iframe>
<script language="JavaScript">
alert("alles da?");
document.writeln(frames.Fenster.document.title);
</script>
</body>
</html>
So funktioniert es fein:
<html>
<head>
<title>Frames</title>
</head>
<body>
<iframe
src="homepage.html" name="Fenster">
</iframe>
<script language="JavaScript">
alert("alles da?");
document.writeln(frames.Fenster.document.title);
</script>
</body>
</html>