Hello
I am currently working on my form and it would be nice to have script to submit a form WITHOUT the validation.
I am tired of filling in data in a big form just to test if my database actually receives something.
So it's just for tesing purposes.
Can anyone tell me how the change this script to remove de VALIDATE function? Or is there another way?
function ff_validate_submit(element, action)
{
if(typeof bfUseErrorAlerts != 'undefined'){
JQuery(".bfErrorMessage").html('');
JQuery(".bfErrorMessage").css("display","none");
}
error = ff_validation(0);
if (error != '') {
if(typeof bfUseErrorAlerts == 'undefined'){
alert(error);
} else {
bfShowErrors(error);
}
ff_validationFocus();
} else
ff_submitForm();
} // ff_validate_submit
Thanks alot