JSFiddle - React, Tailwind, and code Playground

by Haze32

JavaScript

document.querySelectorAll(".topicPart a").forEach(function (a) {
  if (
    a.textContent ===
    "Attorney Newsletters: Six Lawyers Tell How They Built the Best Newsletters in Their Niche"
  )
    a.href =
      "https://www.attorneyatwork.com/attorney-newsletters-six-lawyers-tell-how-they-built-the-best-newsletters-in-their-niche/"
})

document.addEventListener("DOMContentLoaded", function () {
  document.querySelectorAll(".topicPart a").forEach(function (a) {
    if (
      a.textContent ===
      "Attorney Newsletters: Six Lawyers Tell How They Built the Best Newsletters in Their Niche"
    ) {
      a.href =
        "https://www.attorneyatwork.com/attorney-newsletters-six-lawyers-tell-how-they-built-the-best-newsletters-in-their-niche/"
      a.target = "_blank"
    }
  })
})