For whatever reason, if you prefer not to use the placeholder attribute, you can create a custom rule using the plugin's addMethod() method. This is also a good lesson on how to create new rules even if an alternative approach is taken by the OP.
Since you stated you only want date validation to occur when the value is not "yyyy-mm-dd", I simply added a conditional that checks the entered value against the element's defaultValue, and placed the default date method/rule code inside.
jQuery.validator.addMethod("mydaterule", function (value, element) {
if (value != element.defaultValue) {
return this.optional(element) || !/Invalid|NaN/.test(new Date(value));
} else {
return true;
}
}, 'please enter a valid date');
You can further tweak it as desired.
Apply the new rule as follows:
$('#myform').validate({
rules: {
mydate: {
mydaterule: true
}
}
});
DEMO: http://jsfiddle.net/Acew7/
IMPORTANT NOTE: "yyyy-mm-dd" is not the correct format to satisfy the default date rule. However, "yyyy/mm/dd" will work.
e.g.
- 2013-02-28 will fail
date validation
- 2013/02/28 will pass
date validation