![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
12/04/2005, 03:33
|
![Avatar de tunait](http://static.forosdelweb.com/customavatars/avatar3543_1.gif) | Moderadora | | Fecha de Ingreso: agosto-2001 Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 23 años, 5 meses Puntos: 381 | |
Prueba con algo así
Código:
function validar()
{
var cont=document.formulario.elements.length;
for(m=0;m<cont;m++){
if(document.formulario.elements[m].type == "text"){
if(document.formulario.elements[m].value =="" ){
alert('El componente esta vacio');
document.formulario.elements[m].focus()
break;
}
}
}
|