Note | ||
---|---|---|
| ||
As of July 25th, 2023, there is a content freeze on this page. |
The onselect event for combo boxes activates when a selection is made from the combo choices. The event should be specified as a JavaScript expression. The expression may use the following two special variables:
...
Code Block | ||||
---|---|---|---|---|
| ||||
function processSelection(value) {
alert("You selected this value: " + value);
}
|
...