MediaWiki:Common.js: Difference between revisions
From Tiny Rogues Wiki
No edit summary Tag: Reverted |
No edit summary Tags: Manual revert Reverted |
||
Line 18: | Line 18: | ||
} | } | ||
} | } | ||
Revision as of 19:02, 30 March 2024
/* Any JavaScript here will be loaded for all users on every page load. */
function filterSearch() {
var input, filter, ul, li, a, i, txtValue;
input = document.getElementById('FilterInput');
filter = input.value.toUpperCase();
ul = document.getElementById("FilterUL");
li = ul.getElementsByTagName('li');
for (i = 0; i < li.length; i++) {
a = li[i].getElementsByTagName("a")[0];
/* txtValue = a.textContent || a.innerText; */
txtValue = a.title;
if (txtValue.toUpperCase().indexOf(filter) > -1) {
li[i].style.display = "";
} else {
li[i].style.display = "none";
}
}
}