I've been searching for help on this but to no avail. After several hours of frustration, my brain is shot.
I have a checkbox that has values already, like:
<input type="checkbox" name="Test" value="One">One<br>
<input type="checkbox" name="Test" value="Two">Two<br>
<input type="checkbox" name="Test" value="Three">Three<br>
I'm looking to change these values. I have tried using this code to change a value:
document.forms[0].Test[0].value = "One Plus More"
It changes the value, but not the actual displayed value. I can't seem to discover the actual way to change the entire option, including the displayed value.
On top of this, I pretty much just want to be able to change existing values as well as add additional values to a checkbox. Any help and examples are greatly appreciated. Thanks for your help and your time.
<<<<TIM>>>>