Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/08/2010, 11:58
Avatar de Adler
Adler
Colaborador
 
Fecha de Ingreso: diciembre-2006
Mensajes: 4.671
Antigüedad: 18 años
Puntos: 126
Respuesta: Seleccionar todos los checkbox

Hola

Algo así
Código Javascript:
Ver original
  1. function funcion (chkbox) {
  2. var campos = document.forms['elForm'];
  3. for (var i = 0; i < campos.elements.length; i++) {
  4. elemento = campos.elements[i];
  5. if (elemento.type == "checkbox") {
  6. elemento.checked = chkbox
  7. }
  8. }
  9. }
Código HTML:
Ver original
  1. <input type="checkbox"  onclick="funcion(this.checked);"
Suerte
__________________
Los formularios se envían/validan con un botón Submit
<input type="submit" value="Enviar" style="background-color:#0B5795; font:bold 10px verdana; color:#FFF;" />