[web] Changing the value of HTML Form Input control after the control has been set?

Started by
1 comment, last by dave 18 years, 5 months ago
Is this doable? I have 2 &#106avascript functions. One contains code to display the form on the page and the other i want to give value to the controls. Like the text controls, i want to set their values when certain buttons are clicked or whatever. Thanks in advance. ace
Advertisement
control.value = "text";

document.FORM_NAME.ELEMENT_NAME.value = "text";
SAVIOUR!!!

This topic is closed to new replies.

Advertisement