I have an index.html which has a huge form in it. The form is submitted by this javascript:
byId("p").value = page;
byId("nav_container").focus();
document.forms["nav_form_main"].submit();
The focus part doesn't work here...
I want the browser to focus on a specific part of the page (almost at top).
Any tips of what to do?
PS: I have tried putting the focus after the submit(), same issue there.
Thanks