How can I get the value of my iframe using body onload, I get an undefined value.

my non-working code:

index.html

<body onload ="loadThis()">

      <iframe id = "myframe" src = "sample.html"></iframe>

</body>

my.js

function loadThis(){

      var doc = window.frames['myframe'].document.getElementById('userID').innerHTML;

      alert(doc);

}

The function "loadThis()" runs before the Iframe is loaded. How can I get this working?

link|improve this question

54% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You should do this:

<body >

  <iframe onload ="loadThis()" id = "myframe" src = "sample.html"></iframe>

</body>
link|improve this answer
Haven't thought of that, nice. – Robin Carlo Catacutan Jan 16 at 9:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.