frontend/js/search.js
2023-07-22 20:46:43 -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();
}
});
});
});