I'm messing with some javascript to download some csv text:
<script>
var data = '"Column One","Column Two","Column Three"';
window.location.href = 'data:text/csv;charset=UTF-8,' + encodeURIComponent(data);
</script>
So far this is working, but as the browser prompts me to save the file, there is no filename, nor extension.
How can I predetermine the name of the file and it's extension, inside the window.location.href
?
download
attribute of<a>
. – Obscurity