Itens ID'S

Fonte: Wot Wiki
Revisão em 14h15min de 25 de setembro de 2023 por Igorlabanca (discussão | contribs) (Página substituída por "<span style="font-size: 18px;">Voltar</span> <b>Scripts | Target | Cavebot| Healbot | Configs | Itens ID'S</b> <input type="text" id="searchInput" onkeyup="searchTable()" placeholder="Pesquisar por nome do item"> <table class="wikitable sortable jquery-tablesorter" id="tabelaDPL"> <caption>Itens ID's</caption> <thead> <tr> <th scope="col">Item</th> <th scope="col">ID</th> </t...")
Saltar para a navegação Saltar para a pesquisa

Voltar

Scripts | Target | Cavebot| Healbot | Configs | Itens ID'S

<input type="text" id="searchInput" onkeyup="searchTable()" placeholder="Pesquisar por nome do item">

<thead> </thead> <tbody> </tbody>
Itens ID's
Item ID
200 Theons
37712
25 Years Backpack
39693
50 Theons
37710
7197 Theons
37711
Abacus
8156

<script> function searchTable() {

   // Declarações de variáveis
   var input, filter, table, tr, td, i, txtValue;
   input = document.getElementById("searchInput");
   filter = input.value.toUpperCase();
   table = document.getElementById("tabelaDPL");
   tr = table.getElementsByTagName("tr");
   // Loop através de todas as linhas da tabela e esconde as que não correspondem à pesquisa
   for (i = 0; i < tr.length; i++) {
       td = tr[i].getElementsByTagName("td")[0]; // Coluna com o nome do item
       if (td) {
           txtValue = td.textContent || td.innerText;
           if (txtValue.toUpperCase().indexOf(filter) > -1) {
               tr[i].style.display = "";
           } else {
               tr[i].style.display = "none";
           }
       }
   }

} </script>