How is it possible to change a select box value with Javascript?
Set a combobox value with js
Collapse
This topic is closed.
X
X
-
John MTags: None -
Janwillem Borleffs
Re: Set a combobox value with js
"John M" <bali1a@freemai l.hu> schreef in bericht
news:20ykb.2363 2$bU3.302988@ne ws.chello.at...[color=blue]
> How is it possible to change a select box value with Javascript?
>
>[/color]
Yeah, with:
document.forms['formNameOrInde x'].elements['selectNameOrEl ementIndex'].optio
ns[index].value
= newValue;
JW
Comment