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.

I'm a beginner with Facebook Iframe.

This code works well on my page:

<script src="js/mootools-1.2.4-core-yc.js" type="text/javascript" charset="utf-8"></script>
    <script src="js/Bubble.js" type="text/javascript" charset="utf-8"></script>
    <script type="text/javascript" charset="utf-8">
        window.addEvent('domready', function(){
            var positions_for_demo = ['above', 'below', 'left', 'right'];
            $$('.bubble_me').each(function(item){
                new Bubble(item,{
                    position: positions_for_demo.getRandom()
                });
            });
        });
    </script>

But, doesn't work in the Facebook iframe...

share|improve this question
try using Firebug to see where the problem is – emaillenin May 6 '11 at 11:48

1 Answer

You cannot access window element on facebook iframe.

share|improve this answer

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.