Tagged Questions
The fbjs tag has no wiki summary.
10
votes
7answers
3k views
FB.getLoginStatus not calling its callback
The title really says it all. Under some (undetermined) conditions FB.getLoginStatus() just stops working and won't invoke the callback I gave it. The only interesting clues I've found are
...
6
votes
3answers
249 views
Facebook invite friends dialog height issue
We have integrated Facebook Connect to our website, including the invite friends function.
The funny thing is, some users are able to see the full dialog and some users are only able to see the ...
6
votes
2answers
4k views
Best IDE for Facebook apps (FMBL and FBJS support)
I have a reasonable workflow for developing an iFrame app for Facebook. It's reasonable because I can test the app on localhost with a local Apache in any one of a myriad of IDEs that support HTML, ...
5
votes
1answer
321 views
How to handle extended permissions dialog
I used restfb to check extended permissions of user. I click allow permission dialog will not pop it up again next time. However I clicking "Don't Allow" on the permission dialogue box will bring it ...
5
votes
2answers
522 views
How to do any type of info sharing from within a Facebook tab?
Firstly apologies for the length of this question, and for asking about the Facebook API (seemingly one of the most inconsistent API's in the world...).
The Situation:
We're producing an Facebook ...
5
votes
2answers
667 views
Converted JavaScript to FBJS - tabs still not working
I tried my best to convert JavaScript to FBJS according to this page: http://wiki.developers.facebook.com/index.php/FBJS.
Yet my tabs are still not working properly. Does anyone have any suggestions ...
4
votes
1answer
1k views
Why does my setTimeout speed up when I have multiple tabs open to my site?
I have a timer that counts down every second. It works great until the user opens up 3 or 4 tabs of the my site, at which point the newest tab's timer goes double or triple speed. I can currently ...
3
votes
3answers
913 views
Tagging friends in a fb.api status update?
i was wondering whether it's possible to tag friends somehow using the facebook fb.api (javascript sdk) call...
By tagging I mean what happens when you use "@" in the regular facebook.com ui
3
votes
3answers
4k views
how to check special permissions in facebook
hey
how can i check in javascript
if user has granted my site the publish stream permission
?
3
votes
1answer
448 views
Facebooker Connect and Safari 4
Seems to be a known problem, but I didn't find the solution.
When your facebook app tries to perform some JS call via loading fb:iframe with JS code, Safari blocks this saying "Unsafe JavaScript ...
3
votes
5answers
774 views
JavaScript tree functionality without framework
I'd like to display a tree on a Facebook page with JavaScript. Therefore there can be no dependencies on frameworks such as jQuery or Ext which won't run on Facebook, at least as far as I know when I ...
2
votes
2answers
444 views
problem with using getElementById().getValue in FBJS/Facebook !
I am using this code to generate hidden HTML code in Facebook :
echo "<div id=\"y257y\" style=\"display:none;\">".$fdesc."</div>";
And, I am trying to get this element back in JS using ...
2
votes
4answers
6k views
How to Determine if Facebook User 'Likes' a Certain Page
Is there any way to determine if a Facebook user 'likes' a certain page with the API Facebook offers currently?
UPDATE
I have been trying to get this to work via the PHP graph API for a while now ...
2
votes
2answers
338 views
2
votes
3answers
461 views
Facebook JS (FBJS) event listener
So I have looked through most of the facebook questions here and it has absolutely confirmed my thoughts. Facebook development may be among some of the worst I've ever used. I'll avoid my rant for ...
2
votes
1answer
5k views
Facebook FB.ui stream.publish error
Working on a project that has a website and a Facebook page. They both reference the same SWF file and JS code that the SWF file uses to interact with the website/Facebook.
The custom Javascript ...
2
votes
1answer
914 views
Fbml Appllication - Select friend and Post a news on friend's wall - New method
I'm a newbie facebok developer from Italy Sorry, but my english is very poor.
I would like to ask you how to create in my facebook application a multi-friend selector to allow my users to post news ...
2
votes
2answers
1k views
Change HTML SELECT OPTIONs using a json object in FBJS
I have a html select input with a default set of options (it has an ID). I also have a json object that looks like
var replacement_options = {'value 1':'display 1', 'value 2':'display 2' ....
How ...
2
votes
6answers
411 views
Is it a bad idea to auto generate javascript code from the server?
I'm developing a facebook app right now all by my lonesome. I'm attempting to make a javascript call on an onclick event. In this onclick event, I'm populating some arguments (from the server side in ...
2
votes
1answer
2k views
How can I use FBJS to prompt users to post feed in facebook?
Tried sth like below and nth happens..
<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php" type="text/javascript"></script>
<script ...
1
vote
1answer
93 views
JSP code for FB credit callback url
i am developing a Facebook iframe app with Facebook credit API. i am using FB JavaScript SDK for that. but i am unable to find out any sample code in java or JSP for FB credit callback URL. all i ...
1
vote
1answer
71 views
Check if user Likes Page with JS API?
I know this has been asked a bunch of times, but I have only seen serverside solutions.
I'm running an iframe app that is embedded into a page as a tab. I want be test to see if the page is liked or ...
1
vote
2answers
223 views
Opening mobile web application from shared link from Facebook iOS application
I have a mobile web application that uses the Javascript SDK to connect to facebook and use the Graph API to retrieve user information. When testing on an iPhone, the site works fine from Safari, but ...
1
vote
1answer
26 views
Legacy FBJS causing errors
I'm having trouble with some old legacy FBJS. To validate the value of a field I was using
document.getElementById('email2').getValue()
This is now giving me the error
Error: ...
1
vote
1answer
245 views
FB.UI picture not displaying
Everything about this call works, except the picture doesn't display.
I found one other question here on SO but with no resolution.
Any idea WHY this doesn't display the picture?. As near as I can ...
1
vote
2answers
347 views
Fb.Share does not work
Till yesterday everything was working fine.
In my website's head there was
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>
and links ...
1
vote
2answers
411 views
Facebook API: Post to wall with multiline message
I'm posting to a User's wall using the Post API. I want the message which gets posted to have line breaks and links. Eg -
Line 1 (Sid is ...) is Post#title.
Line 2 (Venmo is.. ) is ...
1
vote
2answers
243 views
Date picker for facebook application
hi i am developing a facebook application. i need two date picker in my application. Is there any date picker available. please help me...
1
vote
1answer
272 views
FBJS JavaScript getElementById returning null?
FBJS is driving my mental, I am having problems with selecting elements. I have the following on the content of my page:
<button id="sendmessage" type="submit" style="border: 0; background: ...
1
vote
1answer
340 views
facebook friend list
How can i get the list of my friends friends list using new facebook api. i got the friend list using the below code,
$friends = $facebook->api('/uid/friends');
but i am not able to get friend ...
1
vote
1answer
2k views
In Facebook FB.ui (method: permissions.request) user is not redirect to proper location
Hi i m trying to show permission dialog using following code:
$permission = $facebook->api(array('method' =>'users.hasAppPermission','ext_perm'=>'publish_stream','uid'=> $uid));
...
1
vote
1answer
230 views
Does iframe based application supports the FBJS in page tabs?
As Facebook announced to support the iframe for page tabs also.
http://developers.facebook.com/blog/post/462
I have an existing facebook app built on FBML, and it was working fine until i changed the ...
1
vote
2answers
322 views
How to get a list of invitations to games with Facebook's Graph Api?
The list is displayed in the tab: "Game Requests" or "App Requests". How to get a list to json format?
1
vote
1answer
417 views
Publish to Current user's wall using FBJS in FBML application
I need to publish some message to the current user's wall using FBJS in FBML application.
When I use
window.fbAsyncInit = function() {
FB.init({appId: 'MY_APP_ID', status: true, cookie: true, ...
1
vote
1answer
291 views
FBJS addClassName removeClassName not working
I'm trying to add and remove classes to tabs when people click on them. This is what I have right now and it does absolutely nothing..!
<script>
<!--
function toggleClasses() {
tab1 = ...
1
vote
0answers
234 views
FBJS equivalent to FB.Event.subscribe
Would like to subscribe to an event from within a facebook tab. so i would like to have something like FB.Event.subscribe, but a fbjs method. is there any?
1
vote
1answer
308 views
How to get value from radio button in fbjs
in my app, i used radio button now the problem is how to get the value from it in fbjs.
I am using 10 radio buttons and have 10 values ie from 1 to 10.I tried using .getValue() but it returns only 1.
...
1
vote
1answer
139 views
Problem fbjs with special characters
An error occurred when we have special characters
<input value="Search Today's Deals" onfocus="if(this.getValue() == 'Search Today's Deals'){this.setValue('')}" />
When I click this ...
1
vote
1answer
115 views
Form validation on Facebook tab
I am using static FBML but I am having trouble debugging a form validation problem. I get the dialog which to me seems like it should return false, but the form submits anyway. I am using Firebug and ...
1
vote
0answers
518 views
FBJS image slider
Im trying to recreate a slider similar to:
http://www.facebook.com/BacardiLimon?v=app_146177448730789
but apparently there is zero documentation on how to do something like this with FBJS :'(
...
1
vote
1answer
950 views
Render FBML in Facebook Dialog Popup
I'm working on a facebook page where there is a table of profile images. Onclick for each of these images, I'm using a facebook dialog to show the name, a picture and a description in a popup.
The ...
1
vote
2answers
994 views
Looking for FB.XFBML.parse callback function?
is there a callback function (e.g. onComplete) for this? I would like to display a loader.
FB.XFBML.parse()
1
vote
0answers
354 views
How to use FBJS to popup a new browser window
My applicaiton is FBML. not FB connect.
so, I can't use normal JS to popup new browser window. Is there a way to do it using FBJS?
1
vote
1answer
438 views
Making Ajax call from static FBML page
I have one FBML static page added as a tag in my Facebook page.
It is basically a newsletter sign up. I want the page to submit via Ajax to an external website, get the response and show the response ...
1
vote
0answers
129 views
API calls using FBJS within FBML page
I know that it is possible using an Iframe app, but I haven't found any satisfactory solution for FBML pages. Is it possible?
1
vote
1answer
326 views
Is user authorized, on Facebook tab
Getting an interesting error. I've been developing and application, and viewing it on it's page. Now I'm install that app in as tab on a company page and it's saying I can't use:
...
1
vote
1answer
188 views
How to use FBJS to get the language preference of the user?
I'm modifying an existing FaceBook application. The FaceBook application is generated by another application, so I don't have much control over it. I can only add html/javascript.
My goal is to use ...
1
vote
1answer
824 views
SWF -> FBJS not working with FBJS-Bridge
I'm trying to call a JS function from an SWF which is loaded inside an application tab. As a canvas FBML, the code is working correctly but in case of application tab it's not working.
AS3 Code:
...
1
vote
2answers
1k views
Javascript not showing up on Facebook Application's Profile Tab
This may sound very noobish but I have tried to read the forum posts and docs on javascript behavior on Facebook's profile tabs. I understand that profile tabs don't support referencing external ...
1
vote
1answer
2k views
FBJS Ajax to load content
I tried one of the examples here to load the content in the div, but apart from displaying the image, it doesn't show anything. Where I'm going wrong?
File ajax1.js:
function ...