Possible Duplicate:
jQuery Validation plugin: disable validation for specified submit buttons
I've got a form that is successfully using jQuery Validation to check the fields on a form creating/editing an entry on my site (a Drupal node, if you really care). I'm trying to set things up so that I get normal validation when the user clicks on the "Save" button but NOT when the user clicks on "Delete" -- there's no reason to insist on a complete form if the thing is being deleted. I'm able to catch the invalid detection in an invalidHandler clause, but I can't find the right way to tell the form submission to continue if it was the Delete button that was clicked. Any suggestions out there?