I am using the following for a custom message for validation failure but I am getting the default message...What is wrong? or am I missing something? I get the default message ...but not my custom message
$("#commentForm").validate({
rules: {
insurance1_ucBuildingInsurance_txtOtherReasonDescription: "required"
},
messages: {
insurance1_ucBuildingInsurance_txtOtherReasonDescription: { required: "Please enter a other reason........." }
}
})