EaglercraftX-Site/js/searchbar.js
2025-01-08 20:32:24 -08:00

18 lines
523 B
JavaScript

$(document).ready(function() {
$('#search-bar').on('keyup', function() {
var query = $(this).val().toLowerCase();
$('.filter-button').each(function() {
var buttonText = $(this).text().toLowerCase();
if (buttonText.indexOf(query) > -1) {
$(this).show();
} else {
$(this).hide();
}
});
});
$('#thing').on('click', function() {
$('#search-bar').val('');
$('.filter-button').show();
});
});