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 webpage which loads properly formatted html forms using AJAX calls. This HTML also loads javascript code along with it and it is not working. As I am using jQuery I tried to add live() but it didn't help me. Now I need to debug this. How can I set breakpoints or watch on this code using firebug? I am using jQuery1.3 and can not deviate from it. TIA

share|improve this question
refer [this]("thecodecentral.com/2007/08/01/… for more details. – patel.milanb Oct 2 '11 at 9:23
Are any JS errors thrown? Are those scripts retrieved (check the HTTP-requests list)? – Šime Vidas Oct 2 '11 at 22:20

1 Answer

I'm uncertain from reading your question as to whether or not you have access to and can modify the dynamically loaded script, but if you do, add this statement:

debugger;

where you want your breakpoint.

Also note that although Firebug is perfectly capable of displaying dynamically loaded scripts, I think it hides them by default.

Also, if you have the option of using Chrome or Safari, you can just throw an exception from the point where you want to break, then set the Chrome or Safari debugger option to break on any exception. For example:

try {
    throw new Error("");
}
catch () {}
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.