Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.