Tengo una validacion en javascript pero tengo que pasarla a jQuery.
Código HTML:
function validarFormulario(){ var valido= true; //validacion del nombre if (document.formularioUsuario.nombre.value.length==0){ valido= false; document.getElementById("errorNombre").style.display='block'; }else{ document.getElementById("errorNombre").style.display='none'; } //validacion del email if (document.formularioUsuario.email.value==""){ valido= false; document.getElementById("errorEmail").style.display='block'; }else{ var expreg = /[\w-\.]{3,}@([\w-]{2,}\.)*([\w-]{2,}\.)[\w-]{2,3}/ if (!expreg.test(document.formularioUsuario.email.value)) { valido= false; document.getElementById("errorEmail").style.display='block'; }else{ document.getElementById("errorEmail").style.display='none'; }} return valido; //el formulario fue validado y se envia document.formularioUsuario.submit(); }
Les agradezco me puedan ayudar o darme una orientacion.