vote up 2 vote down star
1

How to Debug java Script Error Using Firebug?

Duplicate

How can I set breakpoints in an external JS script in Firebug

flag

5 Answers

vote up 9 vote down check

Debug using FireBug.

Just check the line on which the error is occuring, then, just before that line, write a "debugger" call.

debugger; //Will invoke FireBug's debugger.
var err = abcs; //Line containing error
link|flag
+1 for showing us how to use the firebug variables and calls – Nuno Furtado May 4 at 8:40
Great link. firebug rocks. +1 – ichiban May 4 at 8:50
1  
Actually, the "debugger" keyword will just invoke an exception which is then caught by firebug. There's nothing firebug specific about it, Internet Explorer can also catch it and ask you to choose a debugging engine for it. – Tudor Olariu May 4 at 9:20
Yes. Tudor is correct. – Kirtan May 4 at 9:40
vote up 0 vote down

Use the console.log(yourObject) function to output anything to the firebug console. It is just like running a var_dump and you can view all your objects and their contents. This is very helpful if you want to check on the contents of a particular variable or even a particular DOM object.

Instead of using cheap alerts - the console.log() function is cleaner and you can see all the outputs neatly in your console pane.

Note however you need to remove all references to the console.log function when you deploy your website as it would not run in IE.

link|flag
vote up 1 vote down

To debug an error in firebug :

  • 1- select inspect tab from menu
  • 2- Set break point in the line that causes error
  • 3- Refrsh the page
  • 4- use F10 to step by step debug and F5 to end debgging

It's like debgging of visual studio

link|flag
vote up 0 vote down

you can put breakpoints in the code, and wait for the execution to hit them. Then you can walk in the code, and use watches to know the values of variables.

link|flag
LOL - uh, all you did was describe the debugging process for just about any language in the world, I don't see how this even begins to answer the question. -1 – Jason Bunting May 4 at 17:07
vote up -1 vote down

Why Firebug , try Visual studio , it has a rich debugging features ;)

link|flag
1  
Firebug also has rich debugging features, lets you debug under Firefox, is much smaller and less memory hungry than Visual Studio, and runs on platforms that are not Microsoft Windows. – David Dorward May 4 at 8:26
How do you debug javascript in FireFox in Visual Studio? – Kamarey May 4 at 8:26
1  
in the question its not mentioned that he wants to debug in firefox and at first before edit it was just about how to debug javascript ! – Adinochestva May 4 at 8:53
Visual Studio is a good tool, especially for debugging JavaScript running in IE; if you are using Firefox though, Firebug is probably the better option. – Jason Bunting May 4 at 17:06

Your Answer

Get an OpenID
or

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