Hi,I have the following code below where I'm trying to dynamically check if anAJAX request error occurs. If an error occurs, do something; otherwise, dosomething else (if it's a success). But according to jQuery.com, they say"You can never have both an error and a success callback with a request."And that's why I'm getting an error when running the code below. Is ...