Search results

  1. anish117p

    JavaScript My javascript filters my header also...

    <script> function searchTable() { var input, filter, found, table, tr, td, i, j; input = document.getElementById("myInput"); filter = input.value.toUpperCase(); table = document.getElementById("main-table"); tr = table.getElementsByTagName("tr"); for (i = 0; i <...
  2. anish117p

    JavaScript My javascript filters my header also...

    Hi folks, hope you are all well! I have the below code running on a html. everytime i run it it also filters the header. could you kindly help. thanking you inadvance. <script> function searchTable() { var input, filter, found, table, tr, td, i, j; input =...
Top Bottom