79642741

Date: 2025-05-28 17:41:08
Score: 1.5
Natty:
Report link

function startDownload() {
  $('#status').html('collect data..')
  setTimeout(function(){
    download('test content', 'file name.txt', 'text/plain');
  }, 2000);
}

function download(text, name, type) {
  var file = new Blob([text], {type: type}) 
  $('<a href="' + URL.createObjectURL(file) + '" download></a>').get(0).click();
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button onclick="startDownload()">Download</button>
<div id="status"></div>

https://catafiles.com/gtafiveandroid

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Diarys Ravel