JSFiddle - React, Tailwind, and code Playground
by Laurie
HTML
<a href="../../../../_controltemplates/PageControls/#" id="ctl00_PlaceHolderMain_ManageDocumentsLink1_inmng" style="text-decoration:underline;color:black" title="Click to manage these documents">
Click here to manage these documents</a>
JavaScript
var links = document.links; // or document.getElementsByTagName("a");
for (var i = 0, n = links.length; i < n; i++) {
if (links[i].title = "Click to manage these documents") {
links[i].href = "http://insidephly.phly.net/dept/cs/Service%20DeliveryProcessCommissions/";
break; // remove this line if there are more than one checkout link
}
}