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.

all. I'm trying to create a widget that users can put on their site. I'm taking a page out of Facebook's book and let the users add using code like this crude example:

<script src="blah.js"></script> <my:widget id="whatever"></my:widget>

This then creates a div containing an iframe inside of the tag.

Now, here's the tricky part. If a user clicks a button inside of this frame, it needs to expand the widget. So, I need to tell the div wrapping around the iframe to change its width and height. All I need to do is send a single flag up so blah.js can read it and do its thing. I tried adding an onload handler to the iframe and change to a different page, but the parent frame cannot read the current iframe's location.

When observing Facebook's like button behavior for liking pages (eg: ), I noticed that they insert an expanded frame into the DOM exactly like I want to do so that a user can add a comment. I just don't know how one manages to communicate to the other.

Any ideas?

share|improve this question
One possibility to communicate between cross domain frames is the HTML5 postMessage API. There is also a jQuery plugin which simplifies its usage and even better it falls back to url fragment manipulation in order to communicate for browsers that do not yet support this method. – Darin Dimitrov Sep 2 '11 at 21:41
This library supports HTML5 postMessage and legacy browsers with resize+hash github.com/ternarylabs/porthole (Ben Alman's jQuery Plugin hasn't been touched in 3 years) – jpillora Feb 27 at 14:46

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.