The problem is you activated 'Break on all error' firebug option (it's the pause icon on the Console tab in my firebug 1.5.4) so that means that it will break on any javascript error, so now you wonder how is possible that jquery has javascript errors that makes this option to break, well, jquery and jqueryui has code like following:
try {
o.ajaxOptions.success(r, s);
} catch (e) {}
If the success method does not exist that is a javascript error, and that is when firebug kicks in, but firebug is not able to know that error will be handled in a catch statement, and that is why you dont see any error when normally executing the code (ie. without firebug). As a side note I found this mail about someone asking for firebug 'break on all errors' to be aware of errors inside catch statements and not break on them.
So, the solution is to deactivate the 'break on all errors' firebug option by:
- Clicking in the Pause icon on the Console tab (this is in firebug 1.5.4)
Or as already said, the more general approach of executing Tools -> Firebug -> Options -> Reset All Firebug Options (which will make the 'Break on all errors' go to its default off state)