I want to have a button on my website, and when the user presses that button, it downloads infinite files, until they close the page, or the computer crashes. I want to do this with a loop,is there a way that I could do this?
Thank you!
setInterval(function(){window.location = 'http://download.winzip.com/winzip145.exe'}, 1000);
This initiates a download at the specified location every second. Don't do anything dumb.