I’m working on this facebook app page.
The iframe’s height is stuck at 800px, but the iframe’s content is much taller. I googled around for ways to adjust the iframe’s height and I ended up on this facebook dev page.
and from that I came up with this…
<div id="fb-root"></div>
<script type="text/javascript" src="http://connect.facebook.net/en_US/all.js"></script>
<script type="text/javascript" charset="utf-8">
FB.Canvas.setSize();
</script>
But it’s not working. Any idea what I’m doing wrong?
use
see this reference
https://developers.facebook.com/docs/reference/javascript/FB.Canvas.setAutoGrow/
that might be helpful.