Hallo Rolf,
vielen Dank nochmal.
So funktioniert es zumindest im Chrome, andere Browser habe ich noch nicht getestet:
<body>
<div id="box">
<iframe src="iframe-content.html" width="500" height="500" id="meinIframe">iframetext</iframe>
<div id="box1">Inline 1</div>
</div>
<script>
$("#meinIframe").on("load",function(){
var getIframe = $("#meinIframe").contents();
var readDivText = getIframe.find("#dbox1").text();
console.log(readDivText); // gibt "dbox1 text" aus
});
</script>
</body>
Das Script muss nach dem HTML Code folgen. Als ich es davor platziert habe, hat es nicht funktioniert.
Gruß ebody