Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function sortTable(columnIndex, tab) {
- //const table = document.getElementById("myTable");
- const tbody = tab.tBodies[0];
- const rows = Array.from(tbody.rows);
- const sortedRows = rows.sort((a, b) => {
- const cellA = a.cells[columnIndex].textContent.trim();
- const cellB = b.cells[columnIndex].textContent.trim();
- if (!isNaN(cellA) && !isNaN(cellB)) {
- // Sort numerically if both cells contain numbers
- return cellA - cellB;
- }
- return cellA.localeCompare(cellB);
- });
- // Append the sorted rows to the tbody
- sortedRows.forEach(row => tbody.appendChild(row));
- }
- // sortTable(2,document.getElementById("tab1"));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement