In my initialize function, within my router I have this piece of code:
AppRouter.prototype.initialize = function() {
Backbone.history.start();
FB.api("/me", function(me) {
name = me.name;
alert('Hello ' + name)
});
};
This alerts me with my name (Hello Danny).
However, I want to send this alert outside the FB.api function: My new code - which doesn't work and returns an alert with "null" is this:
AppRouter.prototype.initialize = function() {
Backbone.history.start();
var name;
name = null;
FB.api("/me", function(me) {
name = me.name;
});
alert('Hello ' + name)
};
Can anyone suggest how I might go about doing this, any help would be much appreciated, thanks!
FB.apiis an AJAX call. What do you really need to do instead ofalert('Hello ' + name)? – mu is too short Aug 27 '12 at 17:58