Jquery validation on click event instead of on submit
- by Mazzi
I looked all around SOF but no luck to find me answer. It is either too easy or the answer is not just there.
What I simply need to do is to validate the form when my <img id='submit'/> is clicked and submit it afterwards.
$(document).ready(function(){
$('#submit').click(function() {
});
// Validation
$('#suzuki_scb').validate({
// My Rules and Messages!
});
});