main
Last change
on this file since 75f74d9 was 75f74d9, checked in by Vlado 222039 <vlado.popovski@…>, 6 weeks ago |
Initial commit: Adding Book Tracker code
|
-
Property mode
set to
100644
|
File size:
728 bytes
|
Line | |
---|
1 | // LOANS
|
---|
2 | function searchLoans() {
|
---|
3 | const searchInput = document.querySelector('.search-input').value.toLowerCase();
|
---|
4 | const tableRows = document.querySelectorAll('#loansTableBody tr');
|
---|
5 |
|
---|
6 | tableRows.forEach(row => {
|
---|
7 | const loanid = row.cells[0].textContent.toLowerCase();
|
---|
8 | const bookid = row.cells[1].textContent.toLowerCase();
|
---|
9 | const copyid = row.cells[2].textContent.toLowerCase();
|
---|
10 |
|
---|
11 | if (loanid.includes(searchInput) || bookid.includes(searchInput) || copyid.includes(searchInput)) {
|
---|
12 | row.style.display = '';
|
---|
13 | } else {
|
---|
14 | row.style.display = 'none';
|
---|
15 | }
|
---|
16 | });
|
---|
17 | document.querySelector('.search-input').addEventListener('keyup', searchLoans);
|
---|
18 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.