Hay 5 comentarios
A mi me gusta..no está mal...los hay mejores pero también los hay mucho peores...XD
Enviado el 23-Noviembre-2011
Deja tu comentario |
function ingresar() { if (enviarcomentario.CAPTCHA_CODE.value=="") { alert ("Por favor introduce el código de validación"); return false; } if (enviarcomentario.nombre.value=="") { alert ("Por favor ingresa tu Nombre"); return false; } if (enviarcomentario.texto.value=="") { alert ("¡Debes escribir un comentario!"); return false; } } function ingresar2() { if (enviarrespuesta.CAPTCHA_CODE.value=="") { alert ("Por favor introduce el código de validación"); return false; } if (enviarrespuesta.nombre.value=="") { alert ("Por favor ingresa tu Nombre"); return false; } if (enviarrespuesta.texto.value=="") { alert ("¡Debes escribir un comentario!"); return false; } } function recomendar2() { var email = document.recomendar.email.value; var email2 = document.recomendar.email2.value; var verif = /^[A-Za-z][A-Za-z0-9_.-]*@[A-Za-z0-9_-]+\.[A-Za-z0-9_.-]+[A-za-z]$/; if (verif.exec(email) == null) { alert("Tu email es incorrecto, por favor revísalo"); return false; } if (verif.exec(email2) == null) { alert("El email de tu amigo es incorrecto, por favor revísalo"); return false; } if (recomendar.email.value=="") { alert ("Por favor ingresa tu Correo Electrónico"); return false; } if (recomendar.email2.value=="") { alert ("Por favor ingresa el Correo Electrónico de tu amigo"); return false; } if (recomendar.CAPTCHA_CODE.value=="") { alert ("Por favor introduce el código de validación"); return false; } if (recomendar.nombre.value=="") { alert ("Por favor ingresa tu Nombre"); return false; } if (recomendar.nombre2.value=="") { alert ("Por favor ingresa el Nombre de tu amigo"); return false; } if (recomendar.consulta.value=="") { alert ("¡Debes escribir un texto!"); return false; } if (recomendar.asunto.value=="") { alert ("¡Falta poner el asunto del mensaje!"); return false; } }