Skip to content

Instantly share code, notes, and snippets.

@andreoav
Created July 25, 2019 11:17
Show Gist options
  • Select an option

  • Save andreoav/9358ea157aa31f39232855fdb7806a7f to your computer and use it in GitHub Desktop.

Select an option

Save andreoav/9358ea157aa31f39232855fdb7806a7f to your computer and use it in GitHub Desktop.

Revisions

  1. andreoav created this gist Jul 25, 2019.
    6 changes: 6 additions & 0 deletions donwload-blob.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    var text = 'Some data I want to export';
    var data = new Blob([text], {type: 'text/plain'});

    var url = window.URL.createObjectURL(data);

    document.getElementById('download_link').href = url;