markus: anzahl gewählte zeichen in select multiple

Beitrag lesen

»»Änderung von

document.form.arrayy.options.length
in document.form.elements["arrayy[]"].options.length

Gruß
Norbert

hallo norbert,

vielen dank! folgendes hat sich als funktionsfähig herausgestellt:

for (var i=0; i < document.form.elements["arrayy[]"].options.length; i++) {
 if (document.form.elements["arrayy[]"].options[i].selected) {
  typlist.push(document.form.elements["arrayy[]"].options[i].value);
 }
}

gruß

markus