Have you looked into $.ajaxComplete();$.ajaxComplete();, $.ajaxSuccess();$.ajaxSuccess();, or the callback functions within the requests themselves:
$.post("somepage.php", {var:"val"}, function(results) { /* this is the callback, which happens after the response is received */ alert(results); }); Take a look at the other Global Ajax Event Handlers.