como puedo hacer validar otro input text con esto mismo?
Código HTML:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Documento sin título</title> <script type="text/javascript"> function compruebaCv(archivo) { if (!archivo) { alert("Debes subir tu archivo") return false; }else{ return true; } } </script> </head> <body> <form id="registracion" enctype="multipart/form-data" name="registracion" method="post" action="borrar.php" onsubmit="return compruebaCv(this.form.cv.value);"> </form> </body> </html>