I want to be able to execute code inside someones else's page.
Here is an example for easy understanding:
Lets say I want to change the color of some iframe page after it is loaded:
document.body.style.backgroundColor = "#AAAAAA";
document.getElementById('targetFrame').contentWindow.targetFunction();
If it's someone else's page. You just plain cannot do this without some cooperation from the other party. Think about the implications this would have for security on the Web if random people such as yourself could arbitrarily run code against applications written by other developers? While I'm sure you're of good character, there is enough people out there of low moral fiber to where this would be a huge issue for data security.
With that said, there are exceptions to this security rule; however.
For instance, if the other Web developer gives you permission to execute code on his or her page, you could use the HTML5 window.postMessage API to pass a message from one context to another and then run a command when that message is received.
To clarify, this requires that the other developer register a listener in his/her website to listen to events that are sent from your website.
Code on your Colleague's site:
Your code:
In order to execute this code when the iframe is finished loading, you would of course need to be able to detect this, which could be accomplished either using the iframe's load event or by having your colleague use postMessage in reverse, to notify you to fire your event..
For more information, check out the HTML5 Specification on Web Messaging.