Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/06/2010, 16:12
Avatar de Infernal
Infernal
 
Fecha de Ingreso: septiembre-2004
Ubicación: Tamaulipas, Mexico
Mensajes: 124
Antigüedad: 20 años, 2 meses
Puntos: 0
Respuesta: Seleccionar/quitar checkboxs con jQuery (novato)

no es correcto ponerle a todos como identificador id, quitaselo y preba asi:



Código Javascript:
Ver original
  1. $(document).ready(function(){
  2.  
  3.             $("#todos").click(function() {
  4.  
  5.                inputs = $('table').find('input').filter('[type=checkbox]');
  6.  
  7.                if($(this).attr("checked"))
  8.                {
  9.                      inputs.attr('checked', true);
  10.                }
  11.                 else
  12.                {
  13.                      inputs.attr('checked', false);
  14.                }
  15.  
  16.             });
  17.  
  18. });