20 lines
557 B
JavaScript
20 lines
557 B
JavaScript
function yearFilter() {
|
|
var input, filter, table, tr, td, i, txtValue;
|
|
input = document.getElementById("filter");
|
|
filter = input.value.toUpperCase();
|
|
table = document.getElementById("reportTable");
|
|
tr = table.getElementsByTagName("tr");
|
|
|
|
for (i = 0; i < tr.length; i++) {
|
|
td = tr[i].getElementsByTagName("td")[0];
|
|
if (td) {
|
|
txtValue = td.textContent || td.innerText;
|
|
if (txtValue.toUpperCase().indexOf(filter) > -1) {
|
|
tr[i].style.display = "";
|
|
} else {
|
|
tr[i].style.display = "none";
|
|
}
|
|
}
|
|
}
|
|
}
|