Skip to content

Instantly share code, notes, and snippets.

@oshikryu
Created January 27, 2014 21:30
Show Gist options
  • Save oshikryu/8657726 to your computer and use it in GitHub Desktop.
Save oshikryu/8657726 to your computer and use it in GitHub Desktop.
convert csv string to file download
window.URL = window.URL || window.webkitURL
blob = new Blob([csvString], {type: 'text/plain'})
objectURL = window.URL.createObjectURL(blob)
@$el.find('.confirm').parent().attr("href", window.URL.createObjectURL(blob))
@$el.find('.confirm').parent().attr("download", @_checkFileName())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment