Skip to content

Instantly share code, notes, and snippets.

@wholypantalones
Last active August 7, 2019 09:29
Show Gist options
  • Save wholypantalones/8983865 to your computer and use it in GitHub Desktop.
Save wholypantalones/8983865 to your computer and use it in GitHub Desktop.
Force download of csv response from ajax request
$.ajax({
url: "path/to/csvData",
type: "GET",
dataType: "text",
success: function (data) {
csvData = 'data:application/csv;charset=utf-8,' + encodeURIComponent(data);
$("#exportsags").attr({
"href": csvData,
"download": "sag_data.csv"
});
}
}); // ajax
@Zerkk
Copy link

Zerkk commented Jun 28, 2019

Thanks, this worked for me!

@shashisingh2005
Copy link

What happen if we have a large data set. Download failed if i have data around more than 18K rows.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment