[jQuery] [validate] Problem with submitHandler
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?