[Javascript] Interesting observation (at least to me)

Tedd Sperling tedd at sperling.com
Thu Jul 18 12:52:42 CDT 2013


Hi gang:

Does anyone else find it odd that onSelect is not an event handler for the Select object?

-- quote ---

To define a select object, use standard HTML syntax with the addition of the onBlur, onChange, and onFocus event handlers:

<SELECT
   NAME="selectName"
   [SIZE="integer"]
   [MULTIPLE]
   [onBlur="handlerText"]
   [onChange="handlerText"]
   [onFocus="handlerText"]>
   <OPTION VALUE="optionValue" [SELECTED]> textToDisplay [ ... <OPTION> textToDisplay]
</SELECT>

-- un-quote ---

But, onSelect is not included above.

Any idea of why?

Cheers,

tedd


_____________________
tedd at sperling.com
http://sperling.com



More information about the Javascript mailing list