Skip to content

Instantly share code, notes, and snippets.

@gabcarvalhogama
Last active January 16, 2019 14:31
Show Gist options
  • Save gabcarvalhogama/e8e3204d5d2a44c7dccaeab4fa1a7602 to your computer and use it in GitHub Desktop.
Save gabcarvalhogama/e8e3204d5d2a44c7dccaeab4fa1a7602 to your computer and use it in GitHub Desktop.
Filtro/Campo de Pesquisa para tabelas - JS
<input type="text" onkeyup="tableFilter(this, '#table-categories', 0);" />
<table id="table-categories">
<thead>
<tr>
<th>Categoria</th>
<th>Qntd. de Postagens</th>
</tr>
</thead>
<tbody>
<tr>
<td>HTML</td>
<td>2</td>
</tr>
<tr>
<td>PHP</td>
<td>10</td>
</tr>
<tr>
<td>JS</td>
<td>4</td>
</tr>
<tr>
<td>CSS</td>
<td>15</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment