Disable focus on first input

Standard behavior on Add/Edit pages: on page load it will set focus on first inputQuestion:
How to disable this behavior?The first input in my form is date field, defaulted to today’s date, it’s editable but users rarely change the default value.
So when the page load I want to set focus on the second input instead.Can be achieved by this
Startup script

$(second <input>).focus();

But it doesn’t look right because the page set focus to first-input then jump to second-input.

You may try disable auto focus of the page, e.g. in Client Script

ew.Form.autoFocus = false;