Skip to content

Instantly share code, notes, and snippets.

@Padilo300
Created February 28, 2020 01:15
Show Gist options
  • Save Padilo300/488953f2e3e32348258d4deaead762b2 to your computer and use it in GitHub Desktop.
Save Padilo300/488953f2e3e32348258d4deaead762b2 to your computer and use it in GitHub Desktop.
js поиск по списку
$("#liveSearchRims").on('keyup', function(){
var value = $(this).val().toLowerCase();
$(".colTableSearch").each(function () {
if ($(this).text().toLowerCase().search(value) > -1) {
$(this).show();
$(this).last().show();
} else {
$(this).hide();
}
});
})
// достаточно просто указать id input и класс элементов списка, скрипт работает с помощью черной магии
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment