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.

FB.Canvas.setSize() is not resizing my IFrame in Chrome or IE9. I have tried setting it with the following:

<script type="text/javascript">
    window.fbAsyncInit = function()
    {
        FB.Canvas.setSize({ width: 810, height: 1200 });
    }
</script>

I have also set the Canvas height in the app settings. The height adjusts for Safari and Firefox, but I get scroll bars in Chrome and IE9.

I also have the following before the closing body tag:

<div id="fb-root"></div>
  <script type="text/javascript" src="http://connect.facebook.net/de_DE/all.js"></script>
<script type="text/javascript">
    FB.init({
    appId: '..', 
    status: true, 
    cookie: true, 
    xfbml: true
    });
    FB.Canvas.setAutoGrow();
</script>

Any idea what I am doing wrong?

share|improve this question
From the docs - "This method is only enabled when Canvas Height is set to "Settable (Default: 800px)" in the App Dashboard.". – Lix Sep 23 '12 at 14:46
And you should not load the JS SDK with the prefix http:// given, because that’ll cause problems when your app is loaded over HTTPS. Use src="//connect.facebook.net/de_DE/all.js" instead – this let’s the browser decide over which protocol to request the script, according to the one the document was loaded over. – CBroe Sep 23 '12 at 14:52
Lix I do have it set to settable. Thanks CBroe, removing the http:// fixed it. Thank you so much! – Kelly Ann Jones Sep 23 '12 at 14:55

closed as too localized by BoltClock Feb 24 at 16:31

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.