Thanks all for help!!!
I remove the illegal call and the function works fine!!!!
Well, I'm a beast!!!
Thanks

On 1/29/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:

Felipe Matos Malinoski schrieb:
> hi,
> I have a problem.
> I have a simple function that checks the status of various checkboxes.
> After I submit a form the function show this error:
>
> [...]
> Stack overflow at line: 124
> [...]
A stack overflow error usually indicates an illegal recusion. That is, a
function that calls itself again and again.

In your case, you should remove the call to $("form").submit() inside
the each function, and most likely the "return true" that follows it, too.

--
Jörn Zaefferer

http://bassistance.de


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/




--
// Solucionador de problemas
while(true){
 echo "Deus apavora!!!";
}
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to