Hallo,
wie kann ich es erreichen, dass das input Feld automatisch aktiviert ist??
Bei select etc... geht es mit SELECTED.
wie kann ich es erreichen, dass das input Feld automatisch aktiviert ist??
Bei select etc... geht es mit SELECTED.
// vorbelegt <input type="text" value="blub" />
// AutoFocus
<body onload="document.getElementById('here').focus()">
<input type="text" id="here" />
document.formname.inputname.focus();
Kommentar