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:

---------------------------
Microsoft Internet Explorer
---------------------------
Stack overflow at line: 124
---------------------------
OK
---------------------------

I never see this before!!!!
And the function most work with IE6.
Can anybody help me???
Thanks!

PS: The function

$("form").submit(function(){
   var submit = false;
   $(document.forms[0].nrOS).each(function(){
     if($(this).attr("checked") == true){
       submit = true;
       $("form").submit();
       return true;
     }
   });

   if(submit == false)
     alert("Marque alguma OS para enviar.");

   return submit;
 });

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

Reply via email to