Can Jquery bind to the success event of an AJAX request?
On a website I'm working on there is an AJAX request defined like this: jQuery.ajax({ url: formURL, type: "POST", dataType: "json", data: postData, success: function (data, textStatus, jqXHR) { jQuery('.sib_loader').hide(); // some more actions take place here... That JS is…