This is in reference to my question - HTML5 - Export Web SQL database to a csv or txt file
I want to the file to be saved as .csv. But the file is saved as Unknown File type. When I open the file in Excel the data is not in csv format. How do I make this work.
function exportData(){
var encodedData = window.btoa(tabdata); // encode a string
window.location = "data:text/csv;base64," + encodedData;
}
<button onclick="exportData()">Export as CSV</button>
When I open it with link, the following code works fine. But I want it to work on button click.
<a download="somefile.csv" href="data:application/csv;charset=utf-8,Col1%2CCol2%2CCol3%0AVal1%2CVal2%2CVal3%0AVal11%2CVal22%2CVal33%0AVal111%2CVal222%2CVal333">Example</a>
Any suggestions?