I'm using the jQuery.Validate.min.js script file and setting the "title" attribute to ensure that Google auto fill messages are not displayed instead of the error messages from the jQuery.Validation methods I have created.
What I have found is that sometimes the value for the "title" is displayed instead of the error message text defined in the Validate method. I suspect that the reason for the is the following code fragment taken from the jQuery.validate.min,.js file in which the value for the "title" attribute is used before the error message text defined in the validator method. this.errorList[id]=(this.message(id,rule)||element.title|| jQuery.validator.messages[rule.method]||"<strong>Warning: No message defined for "+id+"</strong>" I can change the sequence to be as follows. this.errorList[id]=(this.message(id,rule)|| jQuery.validator.messages[rule.method]|| element.title||"<strong>Warning: No message defined for "+id+"</ strong>" Ideally, I would like the "jquery.validate.min.js" file to be amended rather than creating my own local updated version of this file. Would this be possible?