Como confirmar quando mais de uma chamada AJAX foi concluída?

$(document).ready(function() {
    $("#list1").jqGrid({
        url: 'example1.php',
        /*balabala...*/
        gridComplete: function() {

        }
    });

    $("#list2").jqGrid({
        url: 'example2.php',
        /*balabala...*/
        gridComplete: function() {

        }
    });

    /*I want to do something here, but the above grids must be both complete first.*/
    Something...
});

Como eu devo fazer ? Obrigado

questionAnswers(2)

yourAnswerToTheQuestion