vote up 0 vote down star

I have a page with an iframe. Inside that iframe I have a javascript function like this:

function putme() {}

How can I call this function on the main page?

flag

38% accept rate
2  
Duplicate of stackoverflow.com/questions/251420/… – JacobM Nov 2 at 19:46

5 Answers

vote up 1 vote down

If the iframe is in a different domain than the outer page, with great difficulty, or not at all.

In general, the browser prevents javascript from accessing code from a different domain, but if you control both pages, there are some hacks to make something work. More or less.

For example, you can change the fragment of the URL of the iFrame from the outer one, poll the fragment from inside the iframe and call that function. There is a similar trick with the name of the window.

link|flag
vote up 0 vote down

You can access the iframe with it's name:

foo.putme();

Functions declared globally inside the iframe page will become members of the window object for that iframe. You can access the window object of the iframe with the iframe's name.

For this to work, your iframe needs to have a name attribute:

<iframe name="foo" ...>

Also, the main page and the iframe page should be from the same domain.

link|flag
I debug it in firebug and it says:m.contentwindow.putmap is not a function – jamal Nov 2 at 19:55
vote up 0 vote down

Give the frame a name and an id - both identical. window.frameNameOrId_.functionName()

Both frames must be in the same domain (though there are ways around this to limited degree)

link|flag
vote up 0 vote down

On the frameset, specify a name for your frame and in main page you can access the frame by its given name:

window.[FrameName].putme();

link|flag
vote up 0 vote down
window.frames['frameName'].putme();

Do note that this usually only works if the iframe is referring to a page on the same domain. Browsers restrict access to pages within frames that belong to a different domain for security reasons.

link|flag

Your Answer

Get an OpenID
or

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