Answer the question
In order to leave comments, you need to log in
How to get data from a callback function?
How can I get data (data) from the function "successFunc" in the scope of the function "myFunc"?
function myFunc () {
var val = 5;
$.ajax({
url: url,
type: "POST",
dataType : "json",
data: {},
success: successFunc
});
function successFunc (data) {
data = data;
}
};
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question