JSFiddle - React, Tailwind, and code Playground

HTML

<a href="https://placeimg.com/640/480/any">link without class</a> <br />
<a href="https://placeimg.com/640/480/any" class="download">download link</a> <br />
<a href="https://placeimg.com/640/480/any">link without class</a> <br />
<a href="https://placeimg.com/640/480/any" class="download">downlaod link</a>

JavaScript

var downloadAttrSupported = ("download" in document.createElement("a"));
$('.download').each(function(){
  if (downloadAttrSupported) {
    $(this).attr('download','');
  } else {
    this.href = this.href ;
  }
});