Facebook developer: How to Write a Facebook Application in 10 Minutes

I found on gathadams.com this nice tutorial will help you to develop an application like a guess game in only 10 minutes
Ready to start the chrono ?
So here are the headers:
1. Create your demo page. (it should take 2 minutes)
2. Install the Developer Application. (it should take 1 minute)
3. Create the Application. (it should take […]

Facebook News: FAcebook JavaScript Library Has Been Updated.

Facebook has updated the Facebook JavaScript Client library last Tuesday.
The news features include:
- The delay loading of JavaScript files inf FJSC (Facebook JavaScript Client): this will ensure that your application always loads the most current FJSC. For more information, see the Facebook JavaScript Client Library
- New CanvasUtil: this will allow applications developers to set […]

Facebook Javascript (FBJS) Code Sample: Hello World!

Following is a FBJS code sample to create a “Hello World!” program using Javascript with the Facebook specifications.
This will display a link ‘Hello World!’ that will change the color and the background randomly when clicked.
<a href=”#” onclick=”do_colors(this); return false”>Hello World!</a>
<script>
<!–
function random_int(lo, hi) {
return Math.floor((Math.random() * […]