11 lines
368 B
JavaScript
11 lines
368 B
JavaScript
|
document.addEventListener('DOMContentLoaded', (event) => {
|
||
|
$('#search').keyup(function() {
|
||
|
var val = $.trim($(this).val()).replace(/ +/g, ' ').toLowerCase();
|
||
|
|
||
|
$('#content h2').show().filter(function() {
|
||
|
var text = $(this).text().replace(/\s+/g, ' ').toLowerCase();
|
||
|
return !~text.indexOf(val);
|
||
|
}).hide();
|
||
|
});
|
||
|
});
|