wrote:
> Ok, i found all the dumb things I did. onchange doesn't work when
> attached to options
. Moved to element declaration and everything
> works fine.
JFYI: /That/ is _not_ called an (element) declaration:
<select name="staff" onchange="...">
It is called the start tag of the `select' element.
This is called an element declaration:
<!ELEMENT SELECT - - (OPTGROUP|OPTION)+ -- option selector -->
It declares the `select' element (in the Document Type Definition)
so that you can use it in your markup later.
PointedEars