starting file download with JavaScript starting file download with JavaScript ajax ajax

starting file download with JavaScript


We do it that way:First add this script.

<script type="text/javascript">function populateIframe(id,path) {    var ifrm = document.getElementById(id);    ifrm.src = "download.php?path="+path;}</script>

Place this where you want the download button(here we use just a link):

<iframe id="frame1" style="display:none"></iframe><a href="javascript:populateIframe('frame1','<?php echo $path; ?>')">download</a>

The file 'download.php' (needs to be put on your server) simply contains:

<?php    header("Content-Type: application/octet-stream");   header("Content-Disposition: attachment; filename=".$_GET['path']);   readfile($_GET['path']);?>

So when you click the link, the hidden iframe then gets/opens the sourcefile 'download.php'. With the path as get parameter. We think this is the best solution!

It should be noted that the PHP part of this solution is a simple demonstration and potentially very, very insecure. It allows the user to download any file, not just a pre-defined set. That means they could download parts of the source code of the site itself, possibly containing API credentials etc.


I have created an open source jQuery File Download plugin (Demo with examples) (GitHub) which could also help with your situation. It works pretty similarly with an iframe but has some cool features that I have found quite handy:

  • User never leaves the same page they initiated a file download from. This feature is becoming crucial for modern web applications
  • Tested cross browser support (including mobile!)
  • It supports POST and GET requests in a manner similar to jQuery's AJAX API
  • successCallback and failCallback functions allow for you to be explicit about what the user sees in either situation
  • In conjunction with jQuery UI a developer can easily show a modal telling the user that a file download is occurring, disband the modal after the download starts or even inform the user in a friendly manner that an error has occurred. See the Demo for an example of this.


Just call window.location.href = new_url from your javascript and it will redirect the browser to that URL as it the user had typed that into the address bar