frontend/js/search.js
2023-07-27 21:26:28 -04:00

11 lines
365 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();
}
});
});
});