Table of contents
No headers
/***
USAGE:
FacebookFanPage(profile_id, title, url)
Embed a Facebook fan page.
PARAMETERS:
profile_id : str
Facebook fan page profile ID.
title : str
Title of Facebook fan page.
url : str
Url to the Facebook fan page.
***/
var profile_id = $0 ?? $profile_id;
var title = $1 ?? $title;
var url = $2 ?? $url;
<div id="facebook-fan-box">
<iframe
scrolling="no"
frameborder="0"
src=("http://www.facebook.com/connect/connect.php?id="..profile_id.."&connections=10&stream=1")
allowtransparency="true"
style="border: none; width: 300px; height:550px;">
</iframe>
<div style="font-size:8px; padding-left:10px">
<a href=(url)> title </a>' on Facebook'
</div>
</div>

Comments