I have created an iframe with some javascript to start download on page load after 5 seconds but it is not working for me nothing is happening and file is not downloading
<meta name="content-disposition" content="attachment; filename=http://dannykg.com/freebooks/4MindBlowing-Tips.pdf;">
<iframe id="download" width="1" height="1" style="display:none"></iframe>
function startDownload () {
document.getElementById("download").src="http://dannykg.com/freebooks/4MindBlowing-Tips.pdf";
}
setTimeout (startDownload, 5000);