Je veux obtenir le .html() d'une cellule de mon tableau en lançant jQuery en ne connaissant que ses attributs data-col et data-row. Voici le tableau :
<table>
<tr>
<td></td>
<th data-col="A">Mon</th><th data-col="B">Tue</th>
<th data-col="C">Wen</th>
</tr>
<tr>
<th data-row="1">Mon</th>
<td>Something</td>
<td>Something</td>
<td>Somthing</td>
</tr>
<tr>
<th data-row="2">Mon</th>
<td>Something</td>
<td>Something</td>
<td>Somthing</td>
</tr>
<tr>
<th data-row="3">Mon</th>
<td>Something</td>
<td>Something</td>
<td>Somthing</td>
</tr>
</table>
Je ne sais pas comment construire ce sélecteur jQuery. quelque chose comme : $('table>tbody>tr[data-row=2] td')
mais je n'arrive pas à comprendre
Merci pour votre aide