frontend/js/search.js
2023-07-28 20:28:34 -04:00

12 lines
332 B
JavaScript

$(document).ready(function () {
$("#gamesearch").on("input propertychange paste", function () {
$("#games .game").hide();
var txt = $("#gamesearch").val();
$("#games .game").each(function () {
if ($(this).text().toUpperCase().indexOf(txt.toUpperCase()) != -1) {
$(this).show();
}
});
});
});