I have multiple submit buttons in a form and I'm looking to disable jquery validation on all but one. This is probably easy but I've never encountered it before. Here is a simple example.
Example:
<div>
<button type="submit" name="navigate" value="back">Back</button>
<button type="submit" name="navigate" value="next">Next</button>
</div>
How would I validate only on the next button but not the back button?