Posts: 2,536
Location: Western Maryland
|
Quote:
|
Originally Posted by zincoxide
I can populate the text fields without a problem but how do I change the value of radio buttons and combo boxes.
.
|
Zinc, to mark any option within a combo box as being the current value, give it a selected="selected" attribute. For example, say you wanted "Sad" to be the selected value,
HTML Code:
<option selected="selected">Sad</option>
__________________
—Kyrnt
|