About 49,600 results
Open links in new tab
  1. How can I create download link in HTML? - Stack Overflow

    May 8, 2010 · I have a basic idea of HTML. I want to create the download link in my sample website, but I don't have idea of how to create it. How do I make a link to download a file …

  2. html - How to set name of file downloaded from browser? - Stack …

    154 When they click a button to download the file, you can add the HTML5 attribute download where you can set the default filename. That's what I did, when I created a xlsx file and the …

  3. How can I let a user download multiple files when a button is …

    zip sucks if you're on, say, a phone. you can just trigger all three downloads, and chrome even recognizes this and prompts the use if they want to allow your site to "download multiple files". …

  4. How can I download a PDF file instead of opening them in …

    I was wondering how to make a PDF file link downloadable instead of opening them in the browser? How is this done in html? (I'd assume it's done via JavaScript or something).

  5. How to trigger a file download when clicking an HTML button or ...

    Thanks to you "how to trigger a file download in javascript" would give answers much faster for any future searcher.

  6. browser - How do we download a blob url video - Stack Overflow

    And Option 4: use JDownloader 2 to download the playlist URL, in my opinion this is the easiest way.

  7. How to make PDF file downloadable in HTML link? - Stack Overflow

    Dec 13, 2008 · 15 I found a way to do it with plain old HTML and JavaScript/jQuery that degrades gracefully. Tested in IE7-10, Safari, Chrome, and FF: HTML for download link: <p>Thanks for …

  8. How to export an HTML table as a .xlsx file - Stack Overflow

    May 28, 2016 · This means you do need to create multiple files. This is impossible to do with JS, client-side. Instead, you should create a function retrieving the data from your HTML table and …

  9. html - JavaScript blob filename without link - Stack Overflow

    How do you set the name of a blob file in JavaScript when force downloading it through window.location? function newFile(data) { var json = JSON.stringify(data); var blob = new …

  10. Downloading Canvas element to an image - Stack Overflow

    Learn how to download a Canvas element as an image using JavaScript and HTML in this Stack Overflow discussion.