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 using jQuery colorbox and load HTML into an iframe. All is working okay. While the iframe loads, I wanted to display a message along the lines of "stand by the page is loading"

I tried using the callback interface....if I use the traditional example of sending an alert prior to the load/open event, it works okay. If I try to use document.write to display a message, I see the message but the iframe doesn't load.

            //Examples of how to assign the ColorBox event to elements
            $(".iframe").colorbox({
                                            iframe:true, width:"80%", height:"80%",
                                           onOpen:function(){document.write("fff"); }

                                });

What am I doing wrong?

share|improve this question

1 Answer

Don't use document.write() after the page has loaded. If you do, it will completely stop out the document's contents. In fact, just don't use document.write() at all.

If you need something better than alert() for testing & debugging (you do) use console.log().

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.