Blankman
Blankman

Reputation: 267000

Using firebug, where are the js errors shown?

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

Answers (3)

brettkelly
brettkelly

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

erik
erik

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

Related Questions