Reputation: 267000
using firebug, where are the js errors shown when the page renders? (if you have any good js debugging links w/firebug send them my way please!)
Upvotes: 1
Views: 4019
Reputation: 12050
As you are asking for some links:
Firebug Tutorial - Logging, Profiling and CommandLine (Part I)
Firebug Tutorial - Logging, Profiling and CommandLine (Part II)
Upvotes: 3
Reputation: 28205
You'll need to enable the Script panel for whatever site you're looking at. Once you do that, it will show the "Watch", "Stack" and "Breakpoints" tabs in the lower pane under the Script tab.
Upvotes: 2
Reputation: 6436
Javascript errors will be listed in the Console of Firebug.
You can also set Firebug to break on all errors, which is helpful for detecting why the error was thrown.
Upvotes: 6