I was doing this. and i was doing pretty ok with the tutorial i am doing the validation for form like this
<script>
jQuery(document).ready(function() {
jQuery("#formID2").validationEngine('attach', {
onValidationComplete: function(form, status) {
alert("The form status is: " + status + ", it will never submit");
}
})
});
</script>
I am wondering how to make the validation using button click.. I want to remove the submit form and i want to put the validation on button click. Any suggestion is appreciated