JQuery Validation Library (Document! X Sample)
debug Option
jQuery.validator Namespace > options type : debug Option
Enables debug mode. If true, the form is not submitted and certain errors are displayed on the console (requires Firebug or Firebug lite). Try to enable when a form is just submitted instead of validation stopping the submit.
Syntax
var options; // Type:  jQuery.validator.options
var instance; // Type:  jQuery.validator
instance = $(".selector").validate(options);

var value; // Type:  boolean

// Get value
value = instance.debug;
// Set value
instance.debug = value;
var debug : boolean;
Browser Compatibility
8
5
5
See Also

Reference

options type
options Members
validate jQuery Plugin