I'm trying to debug an application and am struggling to display my thrown errors in Firebug.
if I have something like this:
if (!jQuery.fn.drag){
console.log("found an error");
throw new Error("file xyz has not loaded");
}
Question:
Why is it, that the console fires, because there is an error, but my custom throw
does not report anything in Firebug?
Thanks