Veo esta publicación en highlighting even columns pero ¿puedo resaltar solo las columnas seleccionadas?jQuery resaltando columnas seleccionadas solo en una tabla
Este es el código que utilizan:
$("table.Table22 > tbody > tr > td:nth-child(even)").css("background","blue");
Pero me gustaría: NOTA: el class="highlight"
estarán en las columnas seleccionadas, por lo que si he seleccionado la columna 3 de la class="highlight"
se eliminaría de la columna 2 y ha añadido a la columna 3. jQuery necesita agregar la clase basada en la columna seleccionada.
<table class="tbl">
<tr>
<th class="firstColumn">
Cell 1:Heading
</th>
<th class="highlight">
Selected column so this should be highlighted
</th>
<th>
Cell 3:Heading
</th>
<th>
Cell 4:Heading
</th>
<th>
Cell 5:Heading
</th>
</tr>
<tr>
<td>
Cell 1:Row 1
</td>
<td class="highlight">
Selected column so this should be highlighted
</td>
<td>
Cell 3:Row 1
</td>
<td>
Cell 4:Row 1
</td>
<td>
Cell 5:Row 1
</td>
</tr>
<tr>
<td>
Cell 1:Row 2
</td>
<td class="highlight">
Selected column so this should be highlighted
</td>
<td>
Cell 3:Row 2
</td>
<td>
Cell 4:Row 2
</td>
<td>
Cell 5:Row 2
</td>
</tr>
</table>
Me gustó el plugin tableHover pero en realidad estoy buscando cambiar el CSS en las columnas seleccionadas de una tabla, pero pensé que por el ejemplo solo lo haría usa resaltar Pero el complemento irá a mi área de trabajo muy pronto, gracias :) –
Gracias, esto es lo que necesitaba. ¿Alguna posibilidad de que puedas ayudar en mi otra pregunta? También he agregado su código a este: http://stackoverflow.com/questions/1126489/jquery-examples-horizontal-accordion-table-instead-of-un-ordered-lists-upda –
El complemento funciona bien, sin embargo, colspans no son compatibles, lo complicaría a través de –