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