MudGuard: input-feld on the fly zwischen text und password wechseln

Beitrag lesen

Was hälst Du von einem simplen title="Passwort"?
wenn ich richtig informiert bin ist "title" kein attribut fuer ein eingabefeld nach w3c ...

Du bist NICHT richtig informiert.
http://www.w3.org/TR/html401/index/attributes.html sagt:

title

All elements but BASE, BASEFONT, HEAD, HTML, META, PARAM, SCRIPT, TITLE

Das Element INPUT seh ich in der Ausschlußliste nicht...

Und unter
http://www.w3.org/TR/html401/interact/forms.html#edef-INPUT
steht:
<!ELEMENT INPUT - O EMPTY              -- form control -->
<!ATTLIST INPUT
  %attrs;                              -- %coreattrs, %i18n, %events --
wobei %attrs; per
<!ENTITY % attrs "%coreattrs; %i18n; %events;">

und %coreattrs; als

<!ENTITY % coreattrs
 "id          ID             #IMPLIED  -- document-wide unique id --
  class       CDATA          #IMPLIED  -- space-separated list of classes --
  style       %StyleSheet;   #IMPLIED  -- associated style info --
  title       %Text;         #IMPLIED  -- advisory title --"
  >

definiert ist.

Andreas