javascriptjqueryxmlfirefox

Script stack space exhausted firefox


I am working with a large XML response from a web service. When I try to get that using a URL, after some time it displays an error in Firebug that "script stack space quota is exhausted" How can i resolve that?


Solution

  • It sounds like there is some recursion going on when processing the xml, that is essentially causing a stack overflow (by any name).

    Thoughts: