Ver Mensaje Individual
  #5 (permalink)  
Antiguo 22/09/2008, 09:10
Avatar de Legoltaz
Legoltaz
 
Fecha de Ingreso: agosto-2008
Mensajes: 325
Antigüedad: 16 años, 4 meses
Puntos: 6
Respuesta: Problemas con getElementsByTagName

Ahora lo he puesto así y ya funciona, gracias:

Código HTML:
Ver original
  1. <form name="frm">
  2. <input type="text" />
  3. <input type="text" />
  4. <input type="text" />
  5. <input type="text" />
  6. </form>

Código JAVASCRIPT:
Ver original
  1. <script>
  2. var inputs = document.frm.getElementsByTagName('input');
  3. for(var i = 0;i < inputs.length;i++){
  4. inputs[i].disabled = true;
  5. }
  6. </script>