Hi
Manish Bisht píše v Po 17. 07. 2017 v 23:17 +0530:
I am not able to get where to pass ajax_request in the GET or POST parameter or it is different.
I am doing something like this to get the JSON response.
$.ajax({ url: "progress.php" }).done(function() { //success });
How to pass ajax_request in this request.
Following should do that:
$.ajax({ url: "progress.php", data: {ajax_request: '1'} }).done(function() { //success });