I'm trying to make a filter on a table but it doesn't want to work at all.
This is what i have so far.
This must all run on the same page without external stuff (if it's possible)
This is my Javascript part:
<script type="text/javascript">
$(document).load(function () {
$('#SoortFilter').change(function () {
$(".all-sc").hide();
$("." + $(this).find(":selected").attr("id")).show();
});
});
$(document).load(function () {
$('#OnderwerpFilter').change(function () {
$(".all-oc").hide();
$("." + $(this).find(":selected").attr("id")).show();
});
});
$(document).load(function () {
$('#GraadFilter').change(function () {
$(".all-gc").hide();
$("." + $(this).find(":selected").attr("id")).show();
});
});
</script>
This is my HTML part:
<div class="myTable">
<table><tr>
<td>Sorteer op soort:<br><select size="1" id="SoortFilter">
<option id="all-sc">Alles tonen</option>
<option id="SC1">Opwarming</option>
<option id="SC2">Oefening</option>
<option id="SC4">Andere</option>
</select></td>
<td>Sorteer op onderwerp:<br><select size="1" id="OnderwerpFilter">
<option id="all-oc">Alles tonen</option>
<option id="OC11">Voetenwerk algemeen</option>
<option id="OC21">Tactiek dubbel</option>
<option id="OC23">Wedstrijd analyse</option>
</select></td>
<td>Sorteer op graad:<br><select size="1" id="GraadFilter">
<option id="all-gc">Alles tonen</option>
<option id="GC2">Gemakkelijk</option>
<option id="GC3">Gemiddeld</option>
<option id="GC4">Moeilijk</option>
<option id="GC6">Variabel</option>
</select></td>
</tr></table>
</div>
<div class="myTable"><table id="myTable">
<tr>
<td>ID</td>
<td><img src="check.png" width="20" height="20"><img src="wait.png" width="20" height="20"></td>
<td>Soort</td>
<td>Onderwerp</td>
<td>Graad</td>
<td>Benaming</td>
<td>URL</td>
</tr>
<tr class="all-sc all-oc all-gc SC1 OC11 GC6">
<td>4</td>
<td><img src="check.png" width="20" height="20"></td>
<td>Opwarming</td>
<td>Voetenwerk algemeen</td>
<td>Variabel</td>
<td>Agility oefeningen</td>
<td><a target="_blank" href=https://www.youtube.com/watch?v=67XP-AekUoA>https://www.youtube.com/watch?v=67XP-AekUoA</td>
</tr>
<tr class="all-sc all-oc all-gc SC2 OC11 GC2">
<td>8</td>
<td><img src="check.png" width="20" height="20"></td>
<td>Oefening</td>
<td>Voetenwerk algemeen</td>
<td>Gemakkelijk</td>
<td>Splitstep - fundamentals - Kyo groen</td>
<td><a target="_blank" href=https://drive.google.com/file/d/0B0NYVs9pQgGSZzhCQXg3dnFfYUE/edit?pref=2&pli=1>https://drive.google.com/file/d/0B0NYVs9pQgGSZzhCQXg3dnFfYUE/edit?pref=2&pli=1</td>
</tr>
<tr class="all-sc all-oc all-gc SC2 OC11 GC3">
<td>11</td>
<td><img src="check.png" width="20" height="20"></td>
<td>Oefening</td>
<td>Voetenwerk algemeen</td>
<td>Gemiddeld</td>
<td>Vertrek vanuit de basis</td>
<td><a target="_blank" href=https://www.youtube.com/watch?v=WNgt6P_RDLc>https://www.youtube.com/watch?v=WNgt6P_RDLc</td>
</tr>
<tr class="all-sc all-oc all-gc SC2 OC21 GC4">
<td>23</td>
<td><img src="check.png" width="20" height="20"></td>
<td>Oefening</td>
<td>Tactiek dubbel</td>
<td>Moeilijk</td>
<td>Lee Bok - Positiespel dubbel</td>
<td><a target="_blank" href=https://www.youtube.com/watch?v=XMYbU08AOaw&feature=youtu.be>https://www.youtube.com/watch?v=XMYbU08AOaw&feature=youtu.be</td>
</tr>
<tr class="all-sc all-oc all-gc SC4 OC23 GC6">
<td>14</td>
<td><img src="check.png" width="20" height="20"></td>
<td>Andere</td>
<td>Wedstrijd analyse</td>
<td>Variabel</td>
<td>Londen 2012 - Heren dubbel - halve finale</td>
<td><a target="_blank" href=https://www.youtube.com/watch?v=uKj4S9ig7c8>https://www.youtube.com/watch?v=uKj4S9ig7c8</td>
</tr>
<tr class="all-sc all-oc all-gc SC4 OC23 GC6">
<td>15</td>
<td><img src="check.png" width="20" height="20"></td>
<td>Andere</td>
<td>Wedstrijd analyse</td>
<td>Variabel</td>
<td>Londen 2012 - Heren enkel - finale</td>
<td><a target="_blank" href=https://www.youtube.com/watch?v=ytjD4f_I0sc>https://www.youtube.com/watch?v=ytjD4f_I0sc</td>
</tr>
</table></div>
</div>