mirror of
https://gitlab.com/skysthelimit.dev/selenite.git
synced 2025-06-15 18:12:08 -05:00
12 lines
332 B
JavaScript
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();
|
|
}
|
|
});
|
|
});
|
|
});
|