Bonjour
Je souhaite récupérer les informations d'une colonne de ma table ( si celle ci est sélectionnée ).
Je ne trouve pas d'exemple lisible.
Merci de votre aide.

Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<table id="monTableau">
    <thead>
        <tr>
            <th>Column 1</th>
            <th>Column 2</th>
            <th>Column 2</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Row 1 Data 1</td>
            <td>Row 1 Data 2</td>
            <td><input type='checkbox'></td>
        </tr>
        <tr>
            <td>Row 2 Data 1</td>
            <td>Row 2 Data 2</td>
            <td><input type='checkbox'></td>
        </tr>
    </tbody>
</table>