carlo wrote:
Quote:
Hello, I have to activate a combo box in a html form to load an array of
values within the combo. Is there an example somewhere? |
There are no combo boxes in HTML. You mean a `select' element of size 1
which is displayed as a dropdown box in graphical user agents. You can
focus any form element with its focus() method. Besides, there are
plenty of postings in the newsgroup that describe how to add options to
a `select' element (as a Select or HTMLSelectElement object) and how to
remove them.
HTH
PointedEars