Hiërarchische selectors
<table class="table">
<thead>
<tr>
<th>Opleiding:</th>
<th>Datum:</th>
<th>Lokaal:</th>
</tr>
</thead>
<tbody>
<tr>
<td>Dreamweaver</td>
<td>15 december</td>
<td>PC1</td>
</tr>
</tbody>
</table>
Descendant selector: $('ancestor descendant')
Child selector: $('parent > child')
Sibling selector (alle volgende) : $('prev ~ sibling')
Sibling selector (dadelijk aangrenzende): $('prev + next')
Last updated