javascript thread: Another stupid question about list boxes
Whoops! that last line should read:
> No need to delete the item, just change the text:
>
> mylistbox.options[0].text = "Your entry";
>
However, regarding the line:
mylistbox.options[0] = "";
If this doesn't work, try this:
mylistbox.options[0] = null;
|





