![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
24/05/2005, 14:35
|
![Avatar de Charsmy](http://static.forosdelweb.com/customavatars/avatar102529_1.gif) | | | Fecha de Ingreso: mayo-2005 Ubicación: Mexico. Queretaro
Mensajes: 26
Antigüedad: 19 años, 8 meses Puntos: 0 | |
tengo esta funcion en javascript:
function validar()
{
var x=0;
camposTexto = form1.elements;
for (x=0; x < camposTexto.length; x++) {
if (camposTexto[x].value == '' && camposTexto[x].type=='text') {
var x=x+1;
alert("The fild " + [x] + " is empty");
return false;
}
}
} |