Hallöle,
wie klann ich den Fokus auf das erste von einer unbestimmten Anzahl input- Felder mit gleichem Namen setzen?
<form name=form_p211 action=xxx method='post'>
<input type=text name='slot_nr[]' ...
<input type=text name='slot_nr[]' ...
Das hier klappt nicht:
<body onLoad="document.form_p211.slot_nr[0].focus()">
und das auch nicht:
<body onLoad="document.form_p211.slot_nr[].focus()">
Fehlermeldung:
document.form_p211.slot_nr has no properties
Wie geht es?
Gruß, Kalle