Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a lot of warnings in FF console and in Firebug console. I don't know what to do with them. Are they my fault? Also, how can I make debugging clear and useful in FF?

Here are the examples:

enter image description here

enter image description here

[11:06:16.845] function cf does not always return a value @ http://teleprintfejl.inter.hu/jquery.js:16 [11:06:16.853] function ce does not always return a value @ http://teleprintfejl.inter.hu/jquery.js:16 [11:06:16.861] function bZ does not always return a value @ http://teleprintfejl.inter.hu/jquery.js:16 [11:06:16.870] test for equality (==) mistyped as assignment (=)? @ http://teleprintfejl.inter.hu/jquery.js:16 [11:06:16.880] function M does not always return a value @ http://teleprintfejl.inter.hu/jquery.js:16 [11:06:16.889] anonymous function does not always return a value @ http://teleprintfejl.inter.hu/jquery.js:16 [11:06:16.921] test for equality (==) mistyped as assignment (=)? @ http://teleprintfejl.inter.hu/jquery.js:16 [11:06:16.934] anonymous function does not always return a value @ http://teleprintfejl.inter.hu/jquery.js:16 [11:06:16.957] test for equality (==) mistyped as assignment (=)? @ http://teleprintfejl.inter.hu/jquery.js:16 [11:06:16.972] anonymous function does not always return a value @ http://teleprintfejl.inter.hu/jquery.js:17 [11:06:16.998] test for equality (==) mistyped as assignment (=)? @ http://teleprintfejl.inter.hu/jquery.js:17 [11:06:17.012] anonymous function does not always return a value @ http://teleprintfejl.inter.hu/jquery.js:17 [11:06:17.035] test for equality (==) mistyped as assignment (=)? @ http://teleprintfejl.inter.hu/jquery.js:17 [11:06:17.051] anonymous function does not always return a value @ http://teleprintfejl.inter.hu/jquery.js:17 [11:06:17.073] test for equality (==) mistyped as assignment (=)? @ http://teleprintfejl.inter.hu/jquery.js:17 [11:06:17.086] anonymous function does not always return a value @ http://teleprintfejl.inter.hu/jquery.js:17 [11:06:17.126] test for equality (==) mistyped as assignment (=)? @ http://teleprintfejl.inter.hu/jquery.js:18 [11:06:17.153] anonymous function does not always return a value @ http://teleprintfejl.inter.hu/jquery.js:18 [11:06:17.175] reference to undefined property f.valHooks[this] @ http://teleprintfejl.inter.hu/jquery.js:16 [11:06:17.208] reference to undefined property a[f.expando] @ http://teleprintfejl.inter.hu/jquery.js:16 [11:06:17.376] reference to undefined property a[f.expando] @ http://teleprintfejl.inter.hu/jquery.js:16 [11:06:17.480] reference to undefined property a[f.expando] @ http://teleprintfejl.inter.hu/jquery.js:16 [11:06:17.613] reference to undefined property f.event.triggered @ http://teleprintfejl.inter.hu/jquery.js:16

reference to undefined property fbs.breakOnDebugCall
[Break On This Error] var hookReturn = d...e, errorInfo, fbs.breakOnDebugCall);
firebu...vice.js (line 1857)
<System>
reference to undefined property a[f.expando]
[Break On This Error] (function(a,b){function cv(a){return f...ndexOf(".")>=0&&(i=h.split("."),h=i.
jquery.js (line 16)
reference to undefined property fbs.breakOnDebugCall
[Break On This Error] return this.breakOnErrors || fbs.breakOnDebugCall;
firebu...vice.js (line 3523)
<System>
reference to undefined property fbs.breakOnDebugCall
[Break On This Error] var hookReturn = d...e, errorInfo, fbs.breakOnDebugCall);
firebu...vice.js (line 1857)
<System>
reference to undefined property a[f.expando]
[Break On This Error] (function(a,b){function cv(a){return f...ndexOf(".")>=0&&(i=h.split("."),h=i.
jquery.js (line 16)
reference to undefined property fbs.breakOnDebugCall
[Break On This Error] return this.breakOnErrors || fbs.breakOnDebugCall;
firebu...vice.js (line 3523)
<System>
reference to undefined property fbs.breakOnDebugCall
[Break On This Error] var hookReturn = d...e, errorInfo, fbs.breakOnDebugCall);
firebu...vice.js (line 1857)
<System>
reference to undefined property a[f.expando]
[Break On This Error] (function(a,b){function cv(a){return f...ndexOf(".")>=0&&(i=h.split("."),h=i.
jquery.js (line 16)
reference to undefined property fbs.breakOnDebugCall
[Break On This Error] return this.breakOnErrors || fbs.breakOnDebugCall;
firebu...vice.js (line 3523)
<System>
reference to undefined property fbs.breakOnDebugCall
[Break On This Error] var hookReturn = d...e, errorInfo, fbs.breakOnDebugCall);
firebu...vice.js (line 1857)
<System>
reference to undefined property a[f.expando]
[Break On This Error] (function(a,b){function cv(a){return f...ndexOf(".")>=0&&(i=h.split("."),h=i. 
share|improve this question
When you have a closer look, you'll see that these warnings are coming from jQuery. So, definitely not your fault :-). – helpermethod Dec 1 '11 at 10:17
Yes that's a lot of errors. Was there really a need to post it all 4 times though? "Are they my fault?" - if it's your code, then yes they are. To be honest the errors are all pretty self explanatory. If you double click them in Firebug it'll show you the line causing the error. Finally, without posting your code how do you expect us to help you? – Rory McCrossan Dec 1 '11 at 10:17
teleprintfejl.inter.hu/fotokidolgozas/elohivas-beallitasok.php every scripts can be found in the source. jquery version is:v1.6.2 – 2astalavista Dec 1 '11 at 10:23
2  
The warnings are normal, and nothing to worry about. Most of them are from anonymous functions, breaks, and other stuff that throws warnings that are just that, warnings. If you click the error button in your Firebug console that should however be clear, as errors are bad. Warnings, not so much, and yes, I get the same results in Firebug with the latest jQuery, and lots of other scripts as well! It seems anything made by Facebook is especially bad when it comes to warnings, but again, it does'nt really matter! – adeneo Dec 1 '11 at 10:26

1 Answer

up vote 3 down vote accepted

What you can do to avoid them to be logged into the Console is to uncheck Strict Warnings.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.