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/

Reply via email to