I am creating a multi-language website. I need that messages are not written into the script as constants in jQuery. I tried to solve this:
$("#frmLogin").validate
({
rules:
{
'userName': { required: true,
minlength: 5,
regex: "^[a-zA-Z0-9'.\\s]{5,40}$"},
'passWord': { required: true,
minlength: 5,}
},
messages:
{
'userName':{
required:$.post("ajaxError.php",{ error:27,rand:Math.random()},function(data)
{
if(JSON.parse(data)[0]=='')
{
error= 'Error not found';
}else{
error= JSON.parse(data)[0];
}
return error;
})),
etc.
The error variable contains the correct message but it is not intercepted by jquery.message.
validatecall? – Andrew Whitaker Dec 5 '12 at 3:10async: false, you should consider just initializing the validate plugin inside of your success callback.async: falsewill block the user from interacting with the browser while your request is in progress. – Andrew Whitaker Dec 5 '12 at 13:41