I am using jquery validate plugin (http://bassistance.de/jquery-plugins/jquery-plugin-validation/).
the default message to warn user to complete required field is "This field is required." but i want to change it.
how can i change it? I don't want to define a message for each field,I want a new message for all fields.
I use this code,but message doesn't change:
$("#RegisterForm").validate({
messages: {
required: "This field is ."
}
});