I'd like to catch exceptions thrown from callbacks passed to jQuery (either to event handlers like click, or to jqXHR methods such as then or always).
I've identified two options:
window.onerrorhandler - this is only a partial solution because it isn't supported on Android which is one of my target platforms- handling exceptions within each individual callback - not DRY at all!
The only other thing I can think of is overriding jQuery methods but that can result in problems any time I upgrade jQuery. For AJAX handlers, I could possibly use $.ajaxSetup (per the answer to Exceptions thrown in jQuery AJAX callbacks swallowed?) but I'm not sure that will allow me to catch everything.
Are there any other options?