tengo algo así:
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>xxx</title> <link href="../css/estilo.css" rel="stylesheet" type="text/css" /> <script src="../scripts/jquery-1.4.4.min.js" type="text/javascript"></script> <script src="../scripts/jquery.validate.js" type="text/javascript"></script> <script type="text/javascript"> $(function(){ error.appendTo("#mensaje_admon"); $('#verificar').validate({ rules: { nick_usuario:{ required:true , maxlength: 10 }, // Tiene que tener un tamaño mayor o igual a dos caracteres, 'pass_usuario': 'required', }, messages: { nick_usuario: { required:'<div class="texto_alerta">Debe Ingresar un Usuario</div>', maxlength: 'El Nombre de usuario debe de tener al menos 10 caracteres' }, 'pass_usuario': '<div class="texto_alerta">Debe Ingresar una Contrasena</div>', }, }); }); </script> </head> <body> <form action="login.php" method="post" name="verificar" id="verificar" target="_self" accept-charset="utf-8"> <input name="nick_usuario" id="nick_usuario" size="10" maxlength="10" type="text" autofocus/></td> <input name="pass_usuario" id="pass_usuario" size="10" maxlength="10" type="password" /> <input name="Enviar" type="submit" value="Enviar" id="Enviar" /> </form></body> </html>