Ver Mensaje Individual
  #1 (permalink)  
Antiguo 10/09/2015, 10:11
ssras
 
Fecha de Ingreso: septiembre-2015
Ubicación: La Paz-Bolivia
Mensajes: 5
Antigüedad: 9 años, 2 meses
Puntos: 0
activar checkbox multiples

Hola.
tengo el siguiente problema, tengo una tabla que se genera dinamicamente:
Código HTML:
<table class="table table-striped custab">
    <thead>
        <tr>
            <th>Servicio</th>
            <th></th>
            <th style="text-align: center;">Normal</th>
            <th style="text-align: center;">Adulto Mayor</th>
            <th style="text-align: center;">Preferencial</th>
        </tr>
    </thead>
    <tbody><tr>
          <td>Pasajes</td>
          <td><input type="checkbox" id="ss" name="ss[8]"></td>
          <td align="center"><input type="checkbox" disabled=""></td>
          <td align="center"><input type="checkbox" disabled=""></td>
          <td align="center"><input type="checkbox" disabled=""></td>
         </tr>
       <tr>
           <td>Reclamos</td>
           <td><input type="checkbox" id="ss" name="ss[9]"></td>
           <td align="center"><input type="checkbox" disabled=""></td>
           <td align="center"><input type="checkbox" disabled=""></td>
           <td align="center"><input type="checkbox" disabled=""></td>
     </tr>
     </tbody></table> 
lo que quiero hacer con JAVASCRIPT O JQUERY es que haciendo clic en el checkbox con id="ss" me active solo los checkbox de la fila de la tabla.
espero alguien me pueda ayudar

Última edición por ssras; 10/09/2015 a las 10:12 Razón: agregando datos