Hallo Chris,
alert('Text: '+document.formular[1].length);
Was genau willst du damit auslesen? Was versuchst du, mit document.formular[1] anzusprechen? Das Textfeld? Das müsste mit document.formular.elements[1] adressiert werden. Dann gibt es aber auch keine Eigenschaft "length". Wenn du die Anzahl der eingegebenen Zeichen auslesen willst, solltest du document.formular.elements[1].value.length verwenden.
--
What I "discovered" was that happiness is not something that happens. [...] Happiness, in fact, is a condition that must be prepared for, cultivated, and defended privately by each person.
-- Mihaly Csikszentmihalyi
What I "discovered" was that happiness is not something that happens. [...] Happiness, in fact, is a condition that must be prepared for, cultivated, and defended privately by each person.
-- Mihaly Csikszentmihalyi