Skip to content

Instantly share code, notes, and snippets.

@Sidheeqpallam
Created August 25, 2022 04:44
Show Gist options
  • Save Sidheeqpallam/84c009ab2ecc146d44ce2cd323b5590b to your computer and use it in GitHub Desktop.
Save Sidheeqpallam/84c009ab2ecc146d44ce2cd323b5590b to your computer and use it in GitHub Desktop.
Csv file downloading code javascript ajax
const download = function(data){
const blob = new Blob([data], {type : 'text/csv'});
const url = window.URL.createObjectURL(blob);
const a = document.createElement('a');
a.setAttribute('hidden', '');
a.setAttribute('href', url);
a.setAttribute('download', 'download.csv');
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment