Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Usually one would use:

document.location = 'http://www.mozilla.org';

or

window.frames[0].location.href = 'http://www.google.com/';

But the window and document objects dont seem to be accessible from my facebook iframe app. I even tried having an empty link getting that and calling click() on it but the <a> element doesnt support that method..

share|improve this question
Are you sure you can't do document.location from within the iframe? – Aaron Gibralter Mar 25 '11 at 18:24

1 Answer

up vote 2 down vote accepted

Here you go:

top.location.href = 'http://www.mozilla.org';

To change the iframe only:

location.href = 'http://www.mozilla.org';

Result:
Mozilla Page inside Facebook iframe

share|improve this answer
Nope - that navigates the whole window - I just want to navigate the frame.. – user63612 Mar 19 '11 at 4:06
Though using top I can do it: top.frames[0].location.href = "mozilla.org";, if you put that in your answer I can mark it as the correct answer. Thanks. – user63612 Mar 19 '11 at 4:32
@Fëanor: Why you are doing this? updated my answer with how you do it – ifaour Mar 19 '11 at 15:39
Thanks. Because I want my app to do it with a button rather than a link - I am not navigating to another site it is just a page within my site. – user63612 Mar 20 '11 at 1:19
@Fëanor: Did my update help? it should work for input type button – ifaour Mar 20 '11 at 1:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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