If your HTML was like this:
<a href="xxx" id="myLink">whatever</a>
You can change the link by doing this in plain javascript:
document.getElementById("myLink").href = "http://whatever.com/yyyy";
Or, using jQuery:
$("#myLink").attr("href", "http://whatever.com/yyyy");