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
}

console.log(get_id())returns? Also, inset_idyou set a variable calledid, 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 typofunction()[instead offunction(){, if this is the actually code you will have a syntax error on your error console. – ZER0 Jul 28 '12 at 10:50