jquery validate plugin
jquery validate plugin
Hi,
I need to localize my validation plugin in general. Hence I thought
I have to override the default code with this one:
-
//further language validation
$(".myForm").validate({
messages: {
required: "Other language text."
}
});
But it's not working. Another problem is, that I can't access input names
like this > name="xyz[1]" Is there a way to do so?
thx
TC