JQuery Validation Library (Document! X Sample)
jQuery.validator Namespace / options type / ignoreTitle Option
In This Topic
    ignoreTitle Option
    In This Topic
    Set to skip reading messages from the title attribute, helps to avoid issues with Google Toolbar; default is false for compability, the message-from-title is likely to be completely removed in a future release
    Syntax
    var options; // Type:  jQuery.validator.options
    var instance; // Type:  jQuery.validator
    instance = $(".selector").validate(options);
    
    var value; // Type:  boolean
    
    // Get value
    value = instance.ignoreTitle;
    // Set value
    instance.ignoreTitle = value;
    var ignoreTitle : boolean;
    Browser Compatibility
    8
    5
    5
    See Also