vote up 0 vote down star

How do I use the JavaScript DOM to apply onclick events to links inside of an iframe?

Here's what I'm trying that isn't working:

document.getElementById('myIframe').contentDocument.getElementsByTagName('a').onclick = function();

No errors seem to be thrown, and I have complete control of the stuff in the iframe.

Here is some code to test and see if I can at least count how many div's are in my iframe.

// access body
var docBody = document.getElementsByTagName("body")[0];

// create and load iframe element
var embed_results = document.createElement('iframe');
embed_results.id = "myIframe";
embed_results.setAttribute("src", "http://www.mysite.com/syndication/php/embed.php");

// append to body
docBody.appendChild(embed_results);

// count the divs in iframe and alert   
alert(document.getElementById("myIframe").contentDocument.getElementsByTagName('div').length);
flag

Can you modify the iframe's page content? – Daniel A. White Apr 15 at 21:49
Does you browser report any errors in error console? – Rafael Apr 15 at 21:51
updated w/ edits:) – johnnietheblack Apr 15 at 21:53
Could you provide some more code, so that we can look for errors? I'd like to see the context in which this code is fired. Check if this code is run after the frame's content is loaded, not earlier. – Rafael Apr 15 at 22:01

2 Answers

vote up 6 vote down check

It is possible for an iFrame to source content from another website on a different domain.

Being able to access content on other domains would represent a security vulnerability to the user and so it is not possible to do this via Javascript.

For this reason, you can not attach events in your page to content within an iFrame.

link|flag
vote up 2 vote down

getElementsByTagName returns a NodeCollection, so you have to iterate throgh this collection and add onclick handler to every node in that collection. The code below should work.

var links = document.getElementById('myIframe').contentDocument.getElementsByTagName('a');
for(var i=0;i<links.length;++i)links[i].onclick=function(){}

also make sure, you run this code after the frames' content is loaded

embed_results.onload=function(){
   // your code
}
link|flag
hmm, got a "permission denied error – johnnietheblack Apr 15 at 22:13
As Jon already answered, JavaScript security policy doesn't allow the browser to access or modify page contents from other domain. – Rafael Apr 16 at 16:34

Your Answer

Get an OpenID
or

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