JSFiddle - React, Tailwind, and code Playground

HTML

<a href="Decline.php">Decline</a>
<a href="Accept.php">Accept</a>

JavaScript

$("a")
	.filter(function(idx, el) {
		return $(el).text() === "Accept";
	})
  .attr("href", "http://accept.com");