Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

I have a sample code:

window.fbAsyncInit = function() {
   FB.init({appId: appId, status: true, cookie: true, xfbml: true});

   this.test();  
};
// Load the SDK Asynchronously
(function(d){
  var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
  js = d.createElement('script'); js.id = id; js.async = true;
  js.src = "//connect.facebook.net/en_US/all.js";
  d.getElementsByTagName('head')[0].appendChild(js);
}(document));
this.test = function() {
    alert('test');
}

When I call function test() on FB init is result is "TypeError: this.test is not a function", how to fix it ?

share|improve this question

2 Answers

this in function and this in global scope are links to different objects; you can replace this with window it would work.

share|improve this answer

Scope problem, remove "this" when you call the test function. "This" refers to the fbAsyncInit function.

New code (untested, but should work):

window.fbAsyncInit = function() {
   FB.init({appId: appId, status: true, cookie: true, xfbml: true});

   test();  
};
// Load the SDK Asynchronously
(function(d){
  var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
  js = d.createElement('script'); js.id = id; js.async = true;
  js.src = "//connect.facebook.net/en_US/all.js";
  d.getElementsByTagName('head')[0].appendChild(js);
}(document));
function test () {
    alert('test');
}
share|improve this answer
error => ReferenceError: test is not defined – haitruonginfotech Nov 17 '12 at 14:37
remove "this" on the outside too. just define it like this: function test() { alert('test'); } – luschn Nov 17 '12 at 14:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.