-
-
Save ilyasozkurt/b19ece37ab6321d8ff2c43a94d6332a7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function displayRows() { | |
const start = currentPage * rowsPerPage; | |
const end = start + rowsPerPage; | |
const rows = tbody.querySelectorAll("tr"); | |
rows.forEach((row, index) => { | |
if (index < start || index >= end) { | |
row.style.display = "none"; | |
} else { | |
row.style.display = ""; | |
} | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment