JSFiddle - React, Tailwind, and code Playground

by Venkatesh Dematti

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>

JavaScript

$(".document-thumbnail-link").each(function() {
        if ($(this).closest(".download-doc").hasClass("self-download")) {
          $(this).children("a").attr("target", "_self");
        } else if ($(this).closest(".download-doc").hasClass("blank-download")) {
           $(this).children("a").attr("target", "_blank");
        }
      });