JSFiddle - React, Tailwind, and code Playground
HTML
<!--
<div class="downloads">
<div class="file">
<div class="title">
<a href="http://g01.a.alicdn.com/kf/HTB1EUNSIpXXXXa4XFXXq6xXFXXXi/Full-capacity-Pass-H2testw-Housemaid-Minions-Usb-flash-drive-cool-Despicable-Me-2-8GB-usb-flash.jpg">1</a>
</div>
</div>
<div class="file">
<div class="title">
<a href="https://melissahenaff.files.wordpress.com/2014/10/chat-cool.jpg">2</a>
</div>
</div>
<div class="file">
<div class="title">
<a href="http://www.planwallpaper.com/static/images/unnamed_B563JWI.png">3</a>
</div>
</div>
</div>
-->
JavaScript
var lst = Array.prototype.slice.call(
document.querySelectorAll('.downloads .file .title a')
);
var tick = function () {
var link = lst.shift();
$('<a>-:</a>').attr({
href: link.href,
//download: true,
target: "_blank"
})
.appendTo('body')[0].click();
if (lst.length) {
setTimeout(tick, 10000);
}
};
tick();