Is it possible for javascript to inspect the contents of an iframe or
is it an external object?
<iframe id="myiframe" src="">
<script>
document.getEle mentById.myifra me.src =
"http://www.wherever.co m/foo.php"
</script>
I can set the src of the iframe from javascript, can I read the
results, assuming the iframe returns some text?
like with frames you can nest the document object,
mytext = document.getEle mentById.myifra me.document.bod y
Herc
is it an external object?
<iframe id="myiframe" src="">
<script>
document.getEle mentById.myifra me.src =
"http://www.wherever.co m/foo.php"
</script>
I can set the src of the iframe from javascript, can I read the
results, assuming the iframe returns some text?
like with frames you can nest the document object,
mytext = document.getEle mentById.myifra me.document.bod y
Herc
Comment