Yes it is standard in javascript. It generally has no useful cross browser value without reference to a select element and its option(s) of which one is selected though. Consider:
Code:
select_element.options.selectedIndex
That's (assuming that select_element exists and has at least one option that is selected) a number (0 to whatever).
Any other use may or may not have any value in any given browser, although a select element with no options (technically invalid), or no option selected will generally have a options.selectedIndex that is out of range (usually -1, or possibly NaN, etc.).
All of this probably sounds complicated because it is just the general description of its possible usage. If so, and there is something in particular that you wold like to do, give us the details and we can probably help a lot more.
Bookmarks