[jQuery] jQuery and Firebug 1.2.0b13
Someone is experiencing problems with firebug 1.2.0b13 and "domready"
in jQuery.
I load an external js file that contains something like this:
jQuery(function() {
console.time("Test!");
console.timeEnd("Test!");
});
And console throws an error saying that "console is undefined".
It seems that domready is executed before "firefox loads firebug".
To fix this issue I can put a setTimeout before executing the function
inside "domready", but it's a stupid patch I don't like!