// Adapt from https://www.geeksforgeeks.org/how-to-export-html-table-to-csv-using-javascript/ function tableToCSV() { // Variable to store the final csv data var csv_data = []; // Get each row data var rows = document.getElementsByTagName('tr'); for (var i = 0; i < rows.length; i++) { // Get each column data var cols = rows[i].querySelectorAll('td,th'); // Stores each csv row data var csvrow = []; for (var j = 0; j < cols.length; j++) { // Get the text data of each cell // of a row and push it to csvrow csvrow.push(cols[j].textContent); } // Combine each column value with comma csv_data.push(csvrow.join(",")); } // Combine each row data with new line character csv_data = csv_data.join('\n'); // Call this function to download csv file downloadCSVFile(csv_data); } function downloadCSVFile(csv_data) { // Create CSV file object and feed // our csv_data into it let CSVFile = new Blob([csv_data], { type: "text/csv" }); // Create to temporary link to initiate // download process let temp_link = document.createElement('a'); // Download csv file temp_link.download = "kami_results.csv"; temp_link.href = window.URL.createObjectURL(CSVFile); // This link should not be displayed temp_link.style.display = "none"; document.body.appendChild(temp_link); // Automatically click the link to // trigger download temp_link.click(); document.body.removeChild(temp_link); }