Skip to main content
Name Email
Alfreds Futterkiste alfreds@example.com
Berglunds snabbkop snabbkop@gmail.com
John Doe john@dummy.com
Magazzini magazzini@gmail.com
function myFunction() { var input, filter, table, tr, td, cell, i, j; filter = document.getElementById("searchInput").value.toLowerCase(); table = document.getElementById("userTable"); tr = table.getElementsByTagName("tr"); for (i = 1; i < tr.length; i++) { tr[i].style.display = "none"; const tdArray = tr[i].getElementsByTagName("td"); for (var j = 0; j < tdArray.length; j++) { const cellValue = tdArray[j]; if (cellValue && cellValue.innerHTML.toLowerCase().indexOf(filter) > -1) { tr[i].style.display = ""; break; } } } }
[wpdatatable id= »2″]