Ceci ne fonctionne pas :(
Est-ce correcte ?
<script>
$(document).ready(function() {
$("#tabselect").click(function () {
$( "#prisontab" ).select();
})
});
</script>
<a class="button" id="tabselect">Sélectionner</a>
<table id="prisontab">
<caption>La liste...</caption>
<thead>
<tr>
<th>id</th>
<th>NOM</th>
<th>Prénom</th>
</tr>
</thead>
<tbody>
<tr>
<th>201</th>
<th>BILLY</th>
<th>Joe</th>
</tr>
<tr>
<th>104</th>
(…)