I'm looking for a way to fire an event when a POST Ajax call completes and perform some action on returned data from outside any script/plugin without modifying any POST callbacks code too. See pseudo code:
$.post(url, {id: 3,...}, function( d ) {
...some js code here
});
//Looking for an event like this :
$(document).on('post', '??' ,function() {
//I want access to 'd' from post callback in here, and any other POST calls return data...
}