TASM: Iframe Adresse abfragen und an JavaScript weitergeben

Beitrag lesen

<html>
<head>
</head>
<body onLoad=JavaScript:alrt()>
<iframe src="http://www.online.de/" name="iframe10" width=700 scrolling=no height=600></iframe>
<script type="text/javascript">
<!--
function alrt() {
alert("Aktueller Pfad: " + window.iframe10.location.href);
}
//-->
</script>
</body>
</html>
Was mache ich hier falsch?