PROPERTY:
Button::value
button.value
This property sets
or returns the button's Value attribute. This is the text that
is actually displayed on the Button face.
The following code uses the button's onClick event handler to call
a JavaScript function that changes the Value attribute of the Button..
Code:
<form name="myForm" title="myForm">
<INPUT NAME="myButton" TYPE="button" VALUE="Click to change value"
onClick=valChange()>
<script language="javascript">
function valChange() {
document.myForm.myButton.value="Value has
changed"
}
</script>
</form> |