skip to Main Content

custom table filter js/jquery script

I have 4 checkboxes to filter 4 categories of table data. <input type="checkbox" value="audio" id="music_filter"> <input type="checkbox" value="video" id="video_filter"> <input type="checkbox" value="writing" id="writing_filter"> <input type="checkbox" value="game" id="games_filter"> <table> <tr class="audio"> <td>some data</td> </tr> <tr class="video"> <td>some data</td> </tr> <tr class="writing">…

VIEW QUESTION
Back To Top
Search