I want the jQuery Validate plugin to only display the validation messages only upon form submit and not when the focus from a input field is lost. How do Ii achieve this?
You have to change the default option for onfocusout
$(".selector").validate({ onfocusout: false })
More options to enable or disable are listed here - http://docs.jquery.com/Plugins/Validation/validate#toptions