mail us  |  mail this page

products  |  company  |  support  |  downloads  |  isp services  |  contact us

Tech Info - DOM-2 HTMLSelectElement

Extends the HTMLElement interface. W3C HTMLSelectElement Reference. Part of the HTML Interface

Returns SELECT to the nodeName attribute.

The major use of the <select> element is to contain <option> elements which may be accessed directly if they have an id (using getelementById to get the HTMLOptionElement) or as an array using the options attribute of HTMLSelectElement.

Usage and Examples

To find the currently selected <option> in a <select> element:

// javascript fragment
// get the HMLSelectElement
select = document.getElementById{"list");
// loop through the options
for(i = 0; i < combo.options.length; i++){
 // the selected attribute eturns TRUE if currently selected
 if(select.options[i].selected){
  val = select.options[i].value; // use value to identify
	txt = select.options[i].text; // parse text to identify
	// OR get HTMLOptionElemement
	opt = select.options[i]
	val = opt.value;
	txt = opt.text
 }
}

// HTML fragment
<select id="list" size="1">
<option value="1">List Item 1</option>
<option value="2">List Item 2</option>
<option value="1" selected>List Item 2</option>
1</select>

Related Information

createElement method. W3C HTMLElement Reference. HTMLOptionElement

Method and Attributes

Attributes: disabled, form, length, multiple, name, options, selectedIndex, size, tabIndex, type, value

Methods: add, blur, focus, remove



Problems, comments, suggestions, corrections (including broken links) or something to add? Please take the time from a busy life to 'mail us' (at top of screen), the webmaster (below) or info-support at zytrax. You will have a warm inner glow for the rest of the day.

Tech

tech home
audio stuff
web stuff
dom stuff
css stuff
language stuff
regex stuff
rfc stuff
protocol stuff
cable stuff
lan wiring
rs232 wiring
howto stuff
survival stuff
wireless stuff
ascii codes
data rate stuff
telephony stuff
mechanical stuff
pc stuff
electronic stuff
tech links
open guides
RSS Feed Icon RSS Feed

If you are happy it's OK - but your browser is giving a less than optimal experience on our site. You could, at no charge, upgrade to a W3C STANDARDS COMPLIANT browser such as Mozilla

web zytrax.com
add page to facebook add page to technorati.com add page to digg.com add page to del.icio.us add page to furl.net add page to stumbleupon add page to reddit.com mail this page feature print this page

HTML Stuff

W3C HTML 4.01
HTML5 (WHATWG)
HTML4 vs HTML5
HTML5 Reference
W3C Page Validator
W3C DOCTYPE

CSS Stuff

W3C CSS1
W3C CSS2.1

DOM Stuff

W3C DOM
W3C DOM Events
Gecko DOM
MSIE DOM

Usability/Access

usability.gov
W3C -WAI
Web Style Guide
Michael L Bernard
WebAim.org

Jolly Useful

Peter-Paul Koch
A List Apart
Eric Meyer on CSS
glish.com
DOCTYPE definitions

Our Stuff

Our DOM Pages
DOM User Guide
DOM Explorer
DOM Navigation
CSS Techniques
CSS Short Cuts
CSS overview
Oh Really!

Javascript

ECMA-262

Pop-out Menus

webmasterbase.com
Brainjar Menubar
Our Lite JS Menus
Our CSS Menus
Tigra Menus

printer friendly

Print Page

SPF Record Conformant Domain Logo

Copyright © 1994 - 2010 ZyTrax, Inc.
All rights reserved. Legal and Privacy
site by zytrax
Hosted by super.net.sg
web-master at zytrax
Page modified: May 15 2009.