simon551
IS-IT--Management
- May 4, 2005
- 249
I'd like to do something like this:
document.getElementById("fxlbl").innerHTML = "Exchange Rate:<a href="#">toggle fxRate</a>";
basically I want the script to update a field with a description and a link. I have the first part working
, just need to make a link.
document.getElementById("fxlbl").innerHTML = "Exchange Rate:<a href="#">toggle fxRate</a>";
basically I want the script to update a field with a description and a link. I have the first part working
Code:
document.getElementById("fxlbl").innerHTML = "Exchange Rate:"
, just need to make a link.