function get(){
$.get('/get.php', function(data) {
alert('one: ' + data)
return data;
});
}
var test = get();
alert('two:' + test);
In get.php is:
<?php echo "number"; ?>
why one alert show me one: number
but two alert show me two: undefined
How can i get this value outside function?