Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

filter for table search by data attributes

nenagi2635

New Coder
Is it possible to write a filter for a table search by data attributes

Code:
<table>
  <thead>
      <tr>
          <th tabindex="0">Item</th>
          <th tabindex="0">Level</th>
          <th tabindex="0">Type</th>
          <th tabindex="0">Class</th>
      </tr>
  </thead>
  <tbody>
      <tr data-subject="Gallant Assault Coat" data-level="20" data-stats="Power" data-category="Feet" data-kind="Hunter Ranger, Cleric">
          <td>Gallant Assault Coat</td>
          <td>20</td>
          <td>Armor</td>
          <td>Hunter Ranger</td>
      </tr>
      <tr data-subject="Gallant Assault Coat" data-level="18" data-stats="Power, Defense" data-category="Feet, Armor" data-kind="Cleric">
          <td>Gallant Assault Coat</td>
          <td>18</td>
          <td>Armor</td>
          <td>Hunter Ranger</td>
      </tr>
      <tr data-subject="Gallant Assault Coat" data-level="17" data-stats="Defense, Power" data-category="Armor, Hide" data-kind="Hunter Ranger, Cleric">
          <td>Gallant Assault Coat</td>
          <td>17</td>
          <td>Armor</td>
          <td>Hunter Ranger</td>
      </tr>
  </tbody>
</table>
 

Attachments

  • Без имени.png
    Без имени.png
    5.2 KB · Views: 3
Back
Top Bottom