Iframe will not be supported on facebook fan pages tab, the strange thing is, it only happened on first load and the you’ll get this error iframe not supported
I just figured out that apps on Fan Pages Tab need an action from user, so then to get an iframe working on tab,
- In your Tab Url file i.e.
index.php
, create a href tag, that will link tosomefile.php
1
<a href="somefile.php">Click here to begin</a>
- Edit your somefile.php and insert
<iframe>
tag or<fb:iframe/>
tag1
<fb:iframe src="" width="" height="" />
- You might want to make a dummy loading image, just to attract user to click the image,
1 2
<img src="url to loading image" /> <a href="somefile.php">Click here to begin</a>
Alternatively using FBJS as shown in this article, 2 simple hacks to create an iframe on a facebook fan page tab
The script from the article look like this,
|
|