I
I
Ivan Solovyov2018-02-13 23:35:19
JavaScript
Ivan Solovyov, 2018-02-13 23:35:19

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;
  }
  
};


https://codepen.io/Slolov/pen/aEOyKo?editors=0010

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question