So I have a seven part form where six tabs are hidden via CSS and when a user clicks next another part fades in.
I've submitted the page to make sure the plugin is working; it is. Essentially its just going to the next part of the form without validation the current part
As an example
HTML
<form id = "form1" action = "backend.php" method = "post">
<label for "phone">First Name </label>
<input type = "text" name = "fName" placeholder = "First Name..." class = "required" id = "fName" />
<button id = "btn" type = "button" class = "buttonnav next">next</button>
</form>
Javascript
$('#btn').click( function() { $("#form1").validate();});