BretG
Posts: 5
|
| Posted: 05/24/2005, 8:13 AM |
|
I am trying to create a hyperlink on a form that changes based on the value that the user enters into a text box on the same form. Once they save the form and refresh - I can create the link as the form is rendered - but I want to be able to change the link after they leave the textbox.
I have tried adding a Client Side Event - On Change but it doesn't seem to be getting called. And I have know idea of how the javascript should be written
I have tried the following as a test - with no luck
document.getElementById("helpdesklink").href = "http://www.google.com";
document.getElementById("helpdesklink").innerHTML = "http://www.google.com"
)
|