views:

48

answers:

2

FireBug always shows warning messages from jQuery
eg

reference to undefined property o.cache[H][E]
(function(){var l=this,g,y=l.jQuery,p=...ch(function(){o.dequeue(this,E)})}}); jquery.min.js (string 12)

Can I set up FireBug not to show certain warnings for certain scripts?

A: 

I doubt this is an issue with either jQuery or Firebug. Debug your code and find out what's leading to the error / warning.

Phil Brown
@sallake , as Phil said some of your code is throwing error. Please check your javascript code otherwise it will create problems in future.
gov
+1  A: 

I guess that warning will go away if you use: Firebug > Console Panel > Mini-menu on tab > Strict Warnings OFF

johnjbarton
http://getfirebug.com/wiki/index.php/Console#Options_Mini_Menu
orolo
Thanks. That's it.
SaltLake