views:

506

answers:

2

I have a rails application in which i am using scriptaculous,prototip,controlMModal(livepipe.net). I am getting an error in IE 7 and 8 as web page error (alert box) The error is

"Stack overflow at line 1715"

Versions used: scriptaculous v 1.8.3 prototip 2.2.0.2 prototype 1.6.1 controlmodal 2.2.3 (livepipe.net)

A: 

Ironic, isn't it? ;)

On topic, IE has a lower call stack threshold than other browsers. For example, on Firefox, you can call 3000 functions deep before a stack overflow.

Check to see if your code is doing too much, and if you can split up into mini-tasks.

Delan Azabani
+1  A: 

I think it's a prototype error. you have to change some lines of code in your prototype.js as explain here

Salil