jqury aus tablefilter ausgebaut
This commit is contained in:
@@ -3,7 +3,7 @@ function myFilter() {
|
||||
input = document.getElementById("suchstr");
|
||||
filter = input.value.toUpperCase();
|
||||
|
||||
li = jQuery("#suchlist .row");
|
||||
li = document.querySelectorAll("#suchlist .row");
|
||||
for (i = 0; i < li.length; i++) {
|
||||
txtValue = li[i].textContent || li[i].innerText;
|
||||
if (txtValue.toUpperCase().indexOf(filter) > -1) {
|
||||
|
||||
Reference in New Issue
Block a user