Is it entire possible to run Facebook SDK code integrated into a jQuery script?
Example:
$("#getStarted").click(function() {
FB.login(function(response) {
if (response.authResponse) {
var accessToken = response.authResponse.accessToken;
}
});
.....
I would like to only give the Facebook login box once a user clicked on a button on my application. The instance above runs the FB.login irrespective if the user clicked the button or not. The FB code DOES WORK, but not in the order required.