Showing popup in the new Facebook JavaScript SDK
I used to have an href in my website. When users clicked on it, a multi-friend selector showed so they could invite their friends to my website. That was done using the following code: FB.ensureInit(function() { var dialog = new FB.UI.FBMLPopupDialog('XXXXXXX', ''); var fbml = 'Multi-Friend-Selector FBML' dialog.setFBMLContent(fbml); dialog.setContentWidth(620); dialog.setContentHeight(570); dialog.show(); }); Now, I'm using the new JavaScript SDK ( http://connect.facebook.net/en_US/all.js ), but the old methods are not present... How can I do it with the new SDK? Raine Yes, finally got the