ajax inside ajax request code example
Example: how to add ajax within ajax
$.ajax({
type: "post",
url: "ajax/example.php",
data: 'page=' + btn_page,
success: function (data) {
var a = data;
$.ajax({
type: "post",
url: "example.php",
data: 'page=' + a,
success: function (data) {
}
error: function (xhr) {
console.log(xhr.responseText); //saves alot of time during debugging
}
});
}
});