Html – What causes this failure to filter a table?
I am trying to filter a table using plain JavaScript. I have an input of type search and I filter the table rows by the value typed in that input. function searchTable() { var input, filter, table, tr, tds, i,…