javascript auto focus, first-child auto focus
Если нужен автофокус по id:
function FieldAutoFocus() { document.getElementById('fieldid').focus(); } window.onload=FieldAutoFocus;
Автофокус в первый input:
function FirstInputFocus() { document.getElementsByTagName('input')[0].focus(); } window.onload=FirstInputFocus;
Усложняем. Если более 4 input на странице, то автофокус в 4-й (нумерация с 0), иначе в первый:
function InContentFormFocus() { if (document.getElementsByTagName('input')[4]!=undefined) { document.getElementsByTagName('input')[3].focus(); } else { document.getElementsByTagName('input')[0].focus(); } } window.onload=InContentFormFocus;