I'm working on a substantially large rich web page JavaScript application. For some reason a recent change is causing it to randomly hang the browser.

How can I narrow down where the problem is? Since the browser becomes unresponsive, I don't see any errors and can't Break on next using FireBug.

link|improve this question
jslint.com????? – powtac Sep 2 '11 at 22:54
6  
Since you are using Firebug, try to add console.log's to your code to see how far it will run. I've found the source of many issues like this before. – TJ. Sep 7 '11 at 6:26
feedback

6 Answers

Instead of commenting the hell out of your code, you should use a debug console log.

You should use the console.log() functionality provided by most modern browsers, or emulate it if you use a browser that doesn't support it.

Every time you call console.log('sometext'), a log entry in the debug console of your browser will be created with your specified text, usually followed by the actual time.

You should set a log entry before every critical part of your application flow, then more and more until you find down what log isn't being called. That means the code before that log is hanging the browser.

You can also write your own personal log function with added functionalities, for example the state of some particular variable, or an object containing a more detailed aspect of your program flow, etc.

Example

console.log('step 1');

while(1) {}

console.log('step 2');

The infinite loop will halt the program, but you will still be able to see the console log with the program flow recorded until before the program halted.

So in this example you won't see "step 2" in the console log, but you will see "step 1". This means the program halted between step 1 and step 2.

You can then add additional console log in the code between the two steps to search deeply for the problem, until you find it.

link|improve this answer
feedback

You can add debugger; anywhere in your JS code to set a breakpoint manually. I will pause execution and allow you to resume/inspect the code (Firebug/FF).

Firebug Wiki page: http://getfirebug.com/wiki/index.php/Debugger;_keyword

link|improve this answer
feedback

To isolate the problem you could start by removing/disabling/commenting different sections of your code until you have narrowed down the code to a small part which will allow you to find the error. Another possibility is to look at your source control check-in history for the different changes that have recently been committed. Hopefully you will understand where the problem comes from.

link|improve this answer
1  
+1 for exact same answer :) I'll delete mine since you have post a bit earlier – momo Sep 2 '11 at 22:58
This isn't a bad answer... but there's nothing about it specific to this question. Nothing about the browser; nothing about JavaScript... this is more fundamentals of debugging than specific advice on a specific situation. – Richard JP Le Guen Sep 6 '11 at 15:16
1  
@Richard JP Le Guen, can you see a specific situation in the question? I can't thus the general answer. – Darin Dimitrov Sep 6 '11 at 15:44
@Darin Dimitrov - The above listed JavaScript and browser :P The asker even mentions Firebug, reinforcing my perception that they're fishing for profiling tools which they can use to debug the browse crash. (but I don't know any :( ) – Richard JP Le Guen Sep 6 '11 at 16:35
1  
-1 Really a bad JavaScript debugging technique. We have logs to track down program flow. No need to comment or remove parts of code, especially when you have a complex web application which may need to use all that code. – Jose Faeti Sep 12 '11 at 12:07
show 5 more comments
feedback

In my experience, issues which cause the browser to become unresponsive are usually infinite loops or the suchlike.

As a start point, investigate your loops for silly things like not incrementing something you later rely on.

As an earlier poster said, other than that, comment out bits of code to isolate the issue. You 'could' use a divide and conquer methodology and near literally comment out half the pages JS, if it worked with a different error, you've probably found the right bit!.

Then split that in half, etc etc until you find the culprit.

link|improve this answer
feedback

Install Google Chrome, go to your page, press f12 and the developer console will popup. Then select the Scripts button, then select your script (ex: myScript.js) from the dropdown in the top-left of the console. Then click on the first line (or a line where you think don't hangs) and a break-point will be made. After the javascript reaches your break-point click on one of the buttons of the top-right of the console (you will see a button like Pause symbol and then other 4 button). Press on the 2º button (or the button after pause to step over) or the 3º button (step in). Mouse over the buttons and they will explain to you what they mean. Then you will go in your code like this until it hangs and then you can debug it better.

Google Chrome debugger is far better than firebug and faster. I made the change from firebug and this is really great! ;)

link|improve this answer
feedback

I know it's primitive, but I like to sprinkle my js code with 'alert's to see how far my code is going before a problem occurs. If alert windows are too annoying, you might setup a textarea to which you can append logs:

<textarea id='txtLog' ...></textarea>

<script>

...
function log(str) {
    $('#txtLog').append(str + '\n');
}
log("some message, like 'Executing Step #2'...");
...

</script>
link|improve this answer
Alerts are ideal when trying to find what call from a stack results in the browser hanging, because alerts stop all execution of javascript until you click ok. If you use console.log instead, the browser will still crash and you may not see the logs. – Benno Sep 13 '11 at 8:24
@Benno: actually you will be able to see the console in Opera, FF and Chrome even if the browser hangs, if you display them as separate windows. – Jose Faeti Sep 13 '11 at 13:28
@Jose Faeti: Wouldn't it depend on where you log? If you happen to log INSIDE an infinite loop (not knowing that part was the loop), that is what will cause it to crash (too many logs to the console crash my browser...), whereas an alert will completely stop execution of the loop each time it goes through. – Benno Sep 14 '11 at 1:49
Alerts are good for a little website with a couple of small jQuery scripts. For a complex web application like the OP is using, you often have many asynchronous scripts and events, and big scripts. It's impossible to write alerts between the code just for debugging. You need a log system to track down your program flow, so when you run the application you will look at it and see what is being called and what not. The point is planning ahead a logging system in every critical part of your application. – Jose Faeti Sep 14 '11 at 5:23
feedback

Your Answer

 
or
required, but never shown

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