Answers for "how to add ajax within ajax"

0

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
                }
            });
        }
    });
Posted by: Guest on March-31-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language