up vote 0 down vote favorite
share [g+] share [fb]

If I have the following ajax call (inside a function) how do I go about returning the 'test' variable, in this case a string for testing purposes? Currently i'm getting test is not defined.

function getMaps(){

    mapID = "us";

    $.ajax({
        type: "GET",
        url: "getMap.asp",
        data: "mapID=" + mapID,
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        async: false,
        success: function(response) { 

            var test = 'text string';       
        }


      });
      return test;


};  
link|improve this question

75% accept rate
feedback

3 Answers

up vote 0 down vote accepted

function getMaps(){

mapID = "us";
var test="";
$.ajax({
    type: "GET",
    url: "getMap.asp",
    data: "mapID=" + mapID,
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    async: false,
    success: function(response) { 

        test = 'text string';       
    }


  });
  return test;

};

link|improve this answer
feedback

Try to open a pop-up box or set the value of some text field instead. The response function you defined will get called asynchronously.

Also, "test" is not defined within the scope of the function from which it is returned. Move the definition to the top of that function -- it shouldn't be undefined, but it will still not solve the issue.

link|improve this answer
feedback

var right before test means that the variable will be visible only inside that anonymous function

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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