![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
26/07/2004, 02:18
|
![Avatar de living](http://static.forosdelweb.com/customavatars/avatar65604_1.gif) | | | Fecha de Ingreso: mayo-2004
Mensajes: 1.266
Antigüedad: 20 años, 8 meses Puntos: 2 | |
Tiene razón KarlanKas pero si sólo quieres el valor de los input text tendrás que modificar un poco su código:
inputs=document.forms[0].elements
for(a=0;a<inputs.length;a++){
if (inputs[a].type="text"){
alert(inputs[a].value);
}
}
p.d: En mi caso también habría que haberlo hecho |