A few suggestions. Make sure you turn on console panels, networks, and Firebug script.
In the network pane, you should see which js files have downloaded. In the console panel, you can enter console.log(jQuery) and return function() .
This should confirm that jQuery is really loaded and running.
Then go to the script panel and you will see four options at the top. Inspect, Edit, Static, and then a drop-down list of your scripts. This is what you want. Select the script you want to debug.
Based on your question, you probably already know about it, but make sure that it all works in the first place.
If you do not see jQuery in the script list, can you do console.log(jQuery) ?
PS. This is not a matter of size. I regularly upload js files that are 10x jQuery in size.
Edit: A few more suggestions:
1) Reduce to the simplest case and add back. Remove all your scripts other than jQuery, and then add other scripts in stages. Is there one that consistently violates it.
2) Put try / catch clauses around suspicious code blocks. I often found that the FB stops reporting errors after an uncaught exception was thrown.
try { // your code here } catch (e) { console.log(e) }
3) Configure another FF profile to check if you have the same problem.
source share