Advertisement
rgruber

sortTable

Jul 21st, 2024
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.71 KB | Source Code | 0 0
  1. function sortTable(columnIndex, tab) {
  2.     //const table = document.getElementById("myTable");
  3.     const tbody = tab.tBodies[0];
  4.     const rows = Array.from(tbody.rows);
  5.    
  6.     const sortedRows = rows.sort((a, b) => {
  7.         const cellA = a.cells[columnIndex].textContent.trim();
  8.         const cellB = b.cells[columnIndex].textContent.trim();
  9.        
  10.         if (!isNaN(cellA) && !isNaN(cellB)) {
  11.             // Sort numerically if both cells contain numbers
  12.             return cellA - cellB;
  13.         }
  14.         return cellA.localeCompare(cellB);
  15.     });
  16.    
  17.     // Append the sorted rows to the tbody
  18.     sortedRows.forEach(row => tbody.appendChild(row));
  19. }
  20.  
  21. // sortTable(2,document.getElementById("tab1"));
Tags: sortTable
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement