anyone? im using form.submit inside submitHanldler but firebug said that submit is not a function. if i do $(form).submit() i get inside a infinite loop.
On 16 ene, 16:00, arnoldroa <mano...@gmail.com> wrote: > i have this: > > submitHandler: function(form) { > if( jQuery("#productList .productRow").size() > 0 ){ > if( confirm("¿Are you sure?") ) { > form.submit(); > } > else{ return false; } > }else{ > alert("Debe ingresar por lo menos un producto"); > return false; > } > } > > but that gives me the next error on firefox: form.submit is not a > function. Any ideas?