Tagged Questions
6
votes
6answers
386 views
How can you debug JavaScript which hangs the browser?
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? ...
0
votes
1answer
747 views
javascript hangs browser
xmlDoc.load("cd_catalog.xml")
var cd=xmlDoc.getElementsByTagName("CD");
var id_set=1;
var id=xmlDoc.getElementsByTagName("ID"+id_set);
i=0;
function next()
{
if (i<id.length-1)
{
i++;
...
0
votes
1answer
1k views
Java applet: IE Browser hangs after opening a file dialog. Workaround?
This is a registered bug (Bug ID: 6515708) but does anyone have a workaround for it?
Scenario
javascript calls OpenDialog() method in applet
applet starts new thread which opens the AWT FileDialog
...