ericbirdsall
08/26/2021, 3:01 PMericbirdsall
08/26/2021, 3:02 PMericbirdsall
08/26/2021, 3:44 PM<script>
function updateFedExLinks() {
document.querySelectorAll("a[href*='<http://fedex.com|fedex.com>']").forEach(trackingLink => {
let currentURL = trackingLink.href;
let newURL = currentURL.split('<http://www.fedex.com/Tracking?action=track&tracknumbers=').join('https://www.fedex.com/fedextrack/?tracknumbers=>')
trackingLink.href = newURL;
})
}
updateFedExLinks()
</script>