just create another function below run it the way you want as follows. I think your english is letting you down here.
function loadMaps(id) {
var field = { id : id };
var field1 = { id : id };
jQuery.ajax('{% url "mapport.maps.product" %}', {
data : field,
nextpage : field1,
success: function(response, status, xhr) {
showMaps(response.data)
pagination(response.nextpage, response.previouspage,
response.currentpage , response.totalpages,response.previousNum, response.nextNum)
newAjaxCall(response.data)
}
});
}
function newAjaxCall(dataFromAbove) {
}
2
solved I want to get Data from ajax call