frontend/js/search.js
2023-09-22 22:06:32 -04:00

17 lines
514 B
JavaScript

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