The Firebug 'console' object seems to get replaced (by Firefox?).
This workaround works for me:

// store the Firebug console object
var firebugConsole = console;

jQuery(document).ready(function() {
   // and restore it on domready
   window.console = firebugConsole;
});


This is not a global workaround though... For a global workaround you could 
probably use GreaseMonkey.

-- 
You received this message because you are subscribed to the Google Groups 
"Firebug" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/firebug.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/firebug/be905031-9818-44dc-952c-05b7cc3c0b07%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to