Is there a way to tell the Chrome debugger (or maybe Firebug?) to not break within certain files? To assume they\'re not broken, essentially? This seems like something they
If the debugger is blowing up somewhere in the jQuery files, you could potentially wrap the suspect calls in a try/catch and then throw an error in your own catch. That way, you can isolate exactly where your're going wrong.
I would be more inclined to do stack traces to see why my code is blowing up, e.g. invalid JSON, than to try gloss over it.