I've been trying to get a file to download when the page loads by doing this:
<div onload="download()"></div>
<a id="dl" style="display: none"
href=".swf"
download>Download</a>
<script>
function download(){
document.getElementById('dl').click();
}
</script>
What it's supposed to do is trigger a function when the page loads that "clicks" the hidden download link. However, this method isn't working and I don't know why.
Anybody know why?
I've been trying to get a file to download when the page loads by doing this:
<div onload="download()"></div>
<a id="dl" style="display: none"
href="http://www.miniclip./games/base-jumping/en/base_jumping_miniclip.swf"
download>Download</a>
<script>
function download(){
document.getElementById('dl').click();
}
</script>
What it's supposed to do is trigger a function when the page loads that "clicks" the hidden download link. However, this method isn't working and I don't know why.
Anybody know why?
Share Improve this question edited Aug 14, 2015 at 19:52 Sarath Chandra 1,88621 silver badges40 bronze badges asked Aug 14, 2015 at 18:51 user3777369user3777369 671 gold badge2 silver badges10 bronze badges2 Answers
Reset to default 7<script>
(function download() {
document.getElementById('dl').click();
})()
</script>
This will execute your function right after instantiation.
<script>
window.location.href = 'http://www.miniclip./games/base-jumping/en/base_jumping_miniclip.swf';
</script>