.ajaxSuccess() in jQuery

It will be executed whenever an Ajax request completed successfully..

.ajaxSuccess()

// It will bind when an AJAX request completes successfully:

$(document).ajaxSuccess(function() {
    $( “.log” ).text( “Triggered ajaxSuccess handler.” );
});