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.

A function (also called a procedure, method, subroutine, or routine) is a portion of code intended to carry out a single, specific task.

learn more… | top users | synonyms (1)

0
votes
0answers
74 views

Facebook wordpress plugin breaks my jquery scripts

I've built a jquery photo gallery which loops through all the images and rotates them (webkit transform), but the jQuery script stops silently. Here's the page with the error: ...
0
votes
0answers
33 views

Like a facebook page when page URL is known [PHP]

I'm really tired of searching on the internet for an actual code example of how to do this, so please help me.. I have a facebook page, a button and permissions granted. Can anyone please post some ...
-1
votes
2answers
30 views

What am i doing wrong here - setTimeout on document load

Are working with an app and need to execute the function postCook after 10s but something is wrong. Just worked with Javascript / Jqurey for a couple of day's so still not flooowing :) But have now ...
0
votes
1answer
77 views

Log in works fine, but now no functions can be called

Here is my code that starts right below the opening body tag: <div id="fb-root"></div> <script> alert("made it into the script"); window.fbAsyncInit = function() { // init the FB JS ...
1
vote
6answers
759 views

how to call a javascript function form another javascript where both are on the same html

I have a html code in which i had two javascripts. I want to call the function of 1 javascript into another. Below given is the structure of my javascript. <html> <head> <script> ...
0
votes
1answer
128 views

How can I insert current URL in a 'post action' Facebook JavaScript Function

I am able to post the action below to facebook. What I would like to do now is to automatically insert the current page URL into MYURL. Then I can put this code in an external file rather than having ...
1
vote
1answer
725 views

How to wait for javascript function response?

I'm making webpage using facebook API. I want to show user's friends in webpage. So I code like this function showFriends(){ var result = getFriends(); for(var i=0; i<result.length; i++){ ...
0
votes
1answer
238 views

Get facebook profile subscribers count with PHP [duplicate]

Possible Duplicate: Facebook Profile Subscriber Count Is there any way to get number of facebook profile subscribers, but without any access token or something like that? For example, at my ...
0
votes
1answer
106 views

Connecting two Ajax requests

I'm still new to JS: and I'm having trouble connecting two ajax requests. The first is simple: ask fb for a user id: FB.api('/me', function(user) { if (user) { } }); ...
3
votes
1answer
1k views

Tracing function calls in javascript (facebook)

i'm trying to build chrome extension that would be used to auto reply on facebook chat. Mine idea was to override the receive and send(ajax) functions and to act on their call. But i have problems. I ...
0
votes
1answer
481 views

Wall Function not working in my app what's wrong?

This application seems to be working, every thing is fine but not for the wall and invite friends buttons. This is my app url: http://apps.facebook.com/mypersonnaldeathage and the code of wall ...
0
votes
1answer
259 views

Facebook javascript upon login a called function runs twice but should only run once

I am using the code from: http://thinkdiff.net/demo/newfbconnect1/jssdkouth2.html to integrate Facebook into my app, I have the following functions: function login(response, info){ if ...
1
vote
1answer
244 views

How to get (facebook)variable from inside the function

I want the response.id outside of the function in another variable. That's all but I can't seem to get it to work. I tried at least 12 other ways of doing this. It's always "undefined". However when ...
1
vote
2answers
476 views

Facebook api - in a function

I have been trying to set up facebook on a page via a function that is in functions file. However I want to return multiple arrays, so I can get every bit of info. Here's how I'm doing it: ...