Modify ↓
Ticket #4419 (closed enhancement: invalid)
[validate]
| Reported by: | lewismc | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | |
| Component: | plugin | Version: | |
| Keywords: | validate addMethod | Cc: | |
| Blocking: | Blocked by: |
Description
Contribution to addMethod:
Default Value
If a default value is used in the form, by way of the title attribute, this method will check that the field value is not equal to that value, therfore will not validate if is.
jQuery.validator.addMethod(
"defaultVal", function(value, element){
if (jQuery(element).val() != jQuery(element).attr('title')) {return true;} return false;
}, "Please enter a value"
);
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Line: if (jQuery(element).val() != jQuery(element).attr('title')) {return true;} return false;
Should be: return (jQuery(element).val() !== jQuery(element).attr('title')) ? true : false;