I have to filter data in my table on the basis of a particular column's value.
This is my table

And I want to filter this table on the basis of last column "STATUS" which shows whether a student is verified or not. And I have to do this on the click event of button. This is my button
I want when I click this "verified student" button, the table just show the list of verified students and hide the unverified students. I am a bit confused please help.
<table id="Skilllist" class="table table-striped table-bordered ">
<thead class="text-center">
<tr>
<th>
<input type="checkbox" class="allchk1" id="allchk" />
</th>
<th>S.NO.</th>
<th>CAMPUS</th>
<th>ROLL NO.</th>
<th>NAME</th>
<th>Gender</th>
<th>EMAIL ID</th>
<th>CGPA</th>
<th>PS Type</th>
<th>Batch</th>
<th>STATUS</th>
</tr>
</thead>
<tbody id="Studentlistdata">
</tbody>
</table>
<div style="display: none">
<table>
<tbody>
<tr id="Studentlist1">
<td>
<input type="checkbox" class="Allchk" chk="chk" id="Chek1" />
</td>
<td id="Srno" class="ver unver"></td>
<td id="Campus" class="ver unver"></td>
<td id="RollNo" class="rollnumber ver unver"></td>
<td id="Name" class="ver unver"></td>
<td id="disc" class="ver unver"></td>
<td id="email" class="ver unver"></td>
<td id="Cgpa" class="ver unver"></td>
<td id="pstype" class="ver unver"></td>
<td id="batchname" class="ver unver"></td>
<td id="sta" class="ver unver">
<label id="sta1" class="label label-default">Not Verified</label>
</td>
</tr>
</tbody>
</table>
</div>
