up vote 0 down vote favorite
share [g+] share [fb]

I want to execute javascript code inside of an iframe as soon as the rendering begins, not when the document is loaded. The purpose is that i want to modify javascript behavior inside of the frame that is executed inside of an inline script block. The onload-event would execute after the inline script which would be too late. How to execute javascript as soon as the html starts to load?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

You can't alter anything inside of an iframe which is not in your domain, assuming you are trying to get rid of the javascript code in the yahoo iframe from your other post.

link|improve this answer
I just want the openid to be displayed inside of an iframe for the users convenience. I am not some kind of fraudster... – usr Sep 27 '09 at 23:01
2  
To OpenID, you are indistinguishable from a fraudster. How could OpenID offer any kind of security if you could just cross-site-script into its login form and subvert it? – bobince Sep 28 '09 at 1:36
This is true. I think i have to give up this method. – usr Sep 28 '09 at 9:16
feedback

You can put the script inline, but be very careful with this. If the page is not fully loaded and you attempt to access the DOM, you could run into exceptions. In general, I don't really recommend that you inline script. It's better to control the execution flow yourself rather than rely on the behaviour of the browser. If possible, it might be better to look for ways to move your inline script into functions that allow you to sequence the calls.

link|improve this answer
Unfortunately i do not own the frame code. – usr Sep 28 '09 at 9:17
feedback

Instead of putting the code in onload, just place it in the script. For example, instead of

<script>
  function doStuff(){
    // ...
  }
</script>
<!-- snip -->
<body onload="doStuff();">

you should just do this:

<script>
  function doStuff(){
    // ...
  }
  doStuff();
</script>
<!-- snip -->
<body>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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