Ulf Wucherpfennig (www.ulfonline.de): GetElementsByID

Beitrag lesen

Hi

<body onLoad="document.form10.text.focus()" >

--- aber ---

a ) bennenne mal die Form um in einen Namen wo "form" nicht unbedingt drinne ist zb. Horst

b ) gebe deinem Inputfeld eine andere Bezeichnung wie text, weil text eigentlich von HTML eh reserviert ist also heißt dein input
<input type="text" Id="Hannelore" ...>

<body  onLoad="document.Horst.Hannelore.focus()" >

probieren Ulf