Skip to content

Instantly share code, notes, and snippets.

@diogomachado
Forked from PabloPG/Search em tabela
Created January 18, 2016 16:23
Show Gist options
  • Save diogomachado/955c74664d1026785a36 to your computer and use it in GitHub Desktop.
Save diogomachado/955c74664d1026785a36 to your computer and use it in GitHub Desktop.
$("#search").keyup(function(){
_this = this;
// Mostrando apenas as linhas que combinam e escondendo o restante
$.each($("#table tbody tr"), function() {
if($(this).text().toLowerCase().indexOf($(_this).val().toLowerCase()) === -1)
$(this).hide();
else
$(this).show();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment