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 have a lot of existing code in a web application that we want to use in a facebook application. Much of it on the client side depends on prototype.js.

Can I incorporate prototype.js into my FB application without difficulty, and am I going to have to make a choice about iFrame vs FBML early on?

share|improve this question

1 Answer

up vote 2 down vote accepted

You will need to choose between iFrame or FBML early on; in fact, it's generally the first thing you do. If you go with iFrame, you may use whatever JavaScript library you like. FBML, on the other hand, is very restricted and does not allow it.

share|improve this answer
1  
This is true. However, if you want, you can specify fbml/iframe on a page basis by using the parameter fb_force_mode in your url. From the facebook wiki: For example, if you were using an iframe application, and wanted one page to be rendered as FBML, you could append ?fb_force_mode=fbml to the address, which will cause it to render as FBML. This can be particularly useful when using fb:request-form with iframe applications. – Jasper De Bruijn Feb 8 '10 at 16:46
Thanks, those are great starting points. – omnivore Feb 8 '10 at 17:14

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.