Posts

/** * Sorts a HTML table. * * @param {HTMLTableElement} table The table to sort * @param {number} column The index of the column to sort * @param {boolean} asc Determines if the sorting will be in ascending */ function sortTableByColumn(table, column, asc = true) { const dirModifier = asc ? 1 : -1; const tBody = table.tBodies[0]; const rows = Array.from(tBody.querySelectorAll("tr")); // Sort each row const sortedRows = rows.sort((a, b) => { const aColText = a.querySelector(`td:nth-child(${ column + 1 })`).textContent.trim(); const bColText = b.querySelector(`td:nth-child(${ column + 1 })`).textContent.trim(); return aColText > bColText ? (1 * dirModifier) : (-1 * dirModifier); }); // Remove all existing TRs from the table while (tBody.firstChild) { tBody.removeChild(tBody.firstChild); } // Re-add the newly sorted rows tBody.append(...sortedRows); // Remember how the column is currently sorted table.querySelectorAll("th").forEach(th => th.classList.remove("th-sort-asc", "th-sort-desc")); table.querySelector(`th:nth-child(${ column + 1})`).classList.toggle("th-sort-asc", asc); table.querySelector(`th:nth-child(${ column + 1})`).classList.toggle("th-sort-desc", !asc); } document.querySelectorAll(".table-sortable th").forEach(headerCell => { headerCell.addEventListener("click", () => { const tableElement = headerCell.parentElement.parentElement.parentElement; const headerIndex = Array.prototype.indexOf.call(headerCell.parentElement.children, headerCell); const currentIsAscending = headerCell.classList.contains("th-sort-asc"); sortTableByColumn(tableElement, headerIndex, !currentIsAscending); }); });

MALDIVES SERVICE CHARGES : TOP RESORTS, JANUARY 2021

January 2021 Resorts & Hotels Service Charge ($) Velaa Private Island 4,079.10 Waldorf Astoria Ithaafushi 3,339.10 Cheval Blanc Randheli 3,315.11 One & Only Reethi Rah 3,007.00 Four Seasons Resort 2,690.99 The Nautilus 2,886.90 Joali 2,761.41 Vakkaru 2,382.92 Anantara Kihavah 2,097.43 Niyama Private Island 1,805.84 Raffles Maldives Meradhoo 1,781.49 Intercontinental Maamunagau 1,759.00 Milaidhoo Island 1,758.00 Six Senses Laamu 1,609.00 Ozen Reserve Bolifushi 1,604.00 Dusit Thani 1,601.80 Movenpick Resort Kuredhivaru 1,424.00 Kanuhuraa 1,335.55 Fairmont Sirru Fenfushi 1,241.63 Como Maalifushi Resort 1,176.00 W Maldives 1,183.50 Taj Exotica 1,166.00 Anantara Dhigu 1,156.00 Ozen Life Maadhoo 1,108.00 Atmosphere Kanifushi 1,038.35 Amari Havodda 1,016.00 BanyanTree Vabbinfaru 1,014.00 Angsana Velavaru 1,002.00 Huvafenfushi Maldives 1,001.00 You&Me Cocoon 935.00 Sheraton Full Moon 884.29 The Sun Siyam Irufushi 87...
Recent posts