Different ways of handling errors in jQuery.ajax
While using jQuery ajax, one needs to be very careful while handling errors as there are chances that your ajax request gets failed for any reason like server didn't respond, database error or any server side exception. So it is best practice to always handle errors while using jQuery.ajax(). To handle errors, there are 3 […]