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.

We called the setSize with no parameter and it is not working.

FB.Canvas.setSize();

at Jul 18, don't work at Jul 17, work

I have searched on the internet that many people have this problem. But most fixes are related to the call with parameters, i.e. FB.Canvas.setSize({width height});

share|improve this question

1 Answer

If setSize only works with parameters for you, you can use jQuery to determine the current size of your body (the html body, you know what I mean...):

FB.Canvas.setSize({ $(document.body).width(), $(document.body).height() });
share|improve this answer
it is working at Jul 17. But not working at Jul 18. – CK Chan Jul 19 '12 at 3:50
Another guess: Have you initialized Facebook with FB.init? Please update your question with a detailed code snippet. Otherwise you will get only more guesses from the community. – Lego Jul 19 '12 at 7:48

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.