Connecting Tech Pros Worldwide Forums | Help | Site Map

Reliability/Availability of Option, Select, etc. objects

Joe Kelsey
Guest
 
Posts: n/a
#1: Jul 20 '05
I cannot find references to the use of code like the following
anywhere in the W3C DOM:

var select = document.getElementById ('myselect');
select.options[select.options.length] = new Option ('string',
'string');

In other words, which W3C document standardizes the "new Option"
interface? Or does this fall into the category of the mythical "DOM
0" interface, documented nowhere but implemented everywhere?

AFAIK, the W3C DOM specifies the existence of objects which implement
the interfaces of HTMLSelectElement, HTMLOptionElement, and so on, but
it does not actually specify the ability to actually instantiate an
HTMLOptionElement outside of the Document.createElement method.

I suppose it just means that for hysterical reasons, everyone needs to
support the original Netscpae interface including the legacy Objects,
so I might as well join the crowd, even though the Gecko DOM reference
makes no reference to them.

/Joe

DWilliams
Guest
 
Posts: n/a
#2: Jul 20 '05

re: Reliability/Availability of Option, Select, etc. objects


Joe,

I think "new Option" belongs to the realm of JavaScript.

http://devedge.netscape.com/library/...3/reference/op
tion.html

--
HTH,
DWilliams

"Joe Kelsey" <joe-gg@zircon.seattle.wa.us> wrote in message
news:151bebc0.0309021217.1a354e5c@posting.google.c om...[color=blue]
> I cannot find references to the use of code like the following
> anywhere in the W3C DOM:
>
> var select = document.getElementById ('myselect');
> select.options[select.options.length] = new Option ('string',
> 'string');
>
> In other words, which W3C document standardizes the "new Option"
> interface? Or does this fall into the category of the mythical "DOM
> 0" interface, documented nowhere but implemented everywhere?
>
> AFAIK, the W3C DOM specifies the existence of objects which implement
> the interfaces of HTMLSelectElement, HTMLOptionElement, and so on, but
> it does not actually specify the ability to actually instantiate an
> HTMLOptionElement outside of the Document.createElement method.
>
> I suppose it just means that for hysterical reasons, everyone needs to
> support the original Netscpae interface including the legacy Objects,
> so I might as well join the crowd, even though the Gecko DOM reference
> makes no reference to them.
>
> /Joe[/color]


Closed Thread