jQuery soulignant sélectionné uniquement des colonnes dans un tableau

Je vois ce post sur soulignant même des colonnes mais ce que je peux mettre en évidence uniquement les colonnes sélectionnées?

Voici le code qu'ils utilisent:

$("table.Table22 > tbody > tr > td:nth-child(even)").css("background","blue");

Mais je voudrais: NOTE: la class="highlight" sera sur les colonnes sélectionnées, donc, si je choisis la colonne 3 du class="highlight" serait retiré de la colonne 2 et ajoutés à la colonne 3. jQuery doit ajouter la classe basée sur la colonne sélectionnée.

<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>