Hi nochmal,
sorry, hab meinen Testcode nicht auf dein Beispiel angepasst ...
Müsste also dann bei dir so aussehen:<html>
<head>
<script type="text/javascript">
function doIt(Text) {
lowerText = document.getElementById(Text).value.toLowerCase();
laenge = document.getElementById(Text).value.length;
firstLetter = lowerText.substr(0,1).toUpperCase();
newText = firstLetter + lowerText.substr(1,laenge-1);
document.getElementById(Text).value = newText;
}
</script>
</head><body>
<form name="formular">
<input type="text" onChange="doIt(this.id);" id=feld1><br>
<input type="text" onChange="doIt(this.id);" id=feld2><br>
<input type="submit" value=" Los! ">
</form>
</body>
</html>
Hey, vielen lieben Dank für Deine schnelle Hilfe.
Aber da ich leider von Javascript nicht so ganz viel verstehe :)))
hier nochmal ein Auschnitt aus meinem bisherigen Formular:
<body>
<form name="formular">
Vorname / Nachname: <input type=text name="Name"><br>
Strasse: <input type=text name="Strasse"><br>
PLZ / Ort: <input type=text name="Ort"><br>
<input type="submit" value=" Los! ">
</form>
</body>
</html>
Könntest Du mir das nochmal anhand dieses Beispiels machen ?
Ich hoffe nicht, dass meine Bitte zu frech ist :))
Gruß aus Münster
Ingo Siemon