Skip to content

Instantly share code, notes, and snippets.

@olvap
Created October 6, 2010 19:40
Show Gist options
  • Save olvap/613940 to your computer and use it in GitHub Desktop.
Save olvap/613940 to your computer and use it in GitHub Desktop.
//code
var win=0;
var mygrid;
var col;
function columns(url){
$.getJSON("/provincias.json", function(data) {
col = ["id","nombre"];
});
alert(col);
return ["id","name"];
};
$(function(){
columns("/provincias.json")
});​
// problem. the col var in alert(col) always are undifened
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment