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.

The below snippet doesn't get me the value of the global var id displayed in my console. Where am I going wrong?

var id;

function set_id(myid){
 id=myid;
}

function get_id(){
 return id;
}

$("#btn").click(function(){
 $.post("....", function(data){ //data reurns a JSON
  set_id(id); //success!!
 }
}

$("#show").click(function()[
 console.log(get_id()); //doesn't work, how do I get this workin.. Where am I going wrong
}
share|improve this question
It must print something on the console. What? – MaxArt Jul 28 '12 at 10:43
Are you trying to return the global variable id in get_id()? try console.log(id) in $("#show").click() – kidmenot Jul 28 '12 at 10:44
1  
Works jsfiddle.net/Kirrr/vMBkZ – Kir Jul 28 '12 at 10:45
1  
"Doesn't work" is mean nothing, we always get back results, maybe not the ones we expected. So, what actually console.log(get_id()) returns? Also, in set_id you set a variable called id, that is the have the same name of the global ones, so it could be that you're shadowing the global ones multiple times, or maybe you didn't declare the local ones redeclared the global ones again. You also have a typo function()[ instead of function(){, if this is the actually code you will have a syntax error on your error console. – ZER0 Jul 28 '12 at 10:50
2  
Fix your accept rate! – Yannbane Jul 28 '12 at 10:56

3 Answers

Why would you use global variable and getters/setters? You can set it anywhere since it GLOBAL:

id = x;

and get it anywhere:

x = id;

So your code would be:

$("#btn").click(function() {
    $.post("....", function(data) {
        id = data.id;
    });
});

$("#show").click(function() {
    console.log(id);
});
share|improve this answer
Thx for correcting syntax :) I've just copied author's code. – Pavel Staseljun Jul 28 '12 at 11:07

This code looks suspicious to me:

$("#show").click(function()[
   console.log(get_id()); //doesn't work, how do I get this workin.. Where am I going   wrong
}

Maybe you meant this:

$("#show").click(function(){
   console.log(get_id());
});
share|improve this answer
If errors in his working script were such that, the first button would not work too – Kir Jul 28 '12 at 10:51
Yeah, I saw that the first jQuery usage was also not correctly ended. But this had a squared bracket, not a curly one. It's a bigger problem, I think. – HeM01 Jul 28 '12 at 10:54

your syntax is wrong. [ just before the console.log

share|improve this answer
Its syntax is also not enough ) after both click – Kir Jul 28 '12 at 11:18

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.