Answers for "how to get html link for download button on a website"

14

html download link

<a href="the/name/of/your/file.x" download>
Posted by: Guest on April-05-2020
0

how to make a html file downloader

<!--button-->

<button onclick="save('NAME.html','CODE')"></button>

<script>
function save(filename, html) {
  var el = document.createElement('a');
  el.setAttribute('href', 'data:text/html;charset=utf-8,' + encodeURIComponent(html));
  el.setAttribute('download', filename);
  el.style.display = 'none';
  document.body.appendChild(el);
  el.click();
  document.body.removeChild(el);
}
</script>

<!--or-->
<!--link-->
<a href="the/name/of/your/file.x" download>
Posted by: Guest on November-01-2020

Code answers related to "how to get html link for download button on a website"

Browse Popular Code Answers by Language