I have a form with multiple fields that I\'m validating (some with methods added for custom validation) with Jörn Zaeffere\'s excellent jQuery Validation plugin. How do you
Here is the simplest version, hope it helps someone,
$('#cancel-button').click(function() { var $form = $(this).closest('form'); $form.find('*[data-validation]').attr('data-validation', null); $form.get(0).submit(); });