I have a page html
, with several input
fields, where I want to pass them in sequence using the tab key.
I used tabindex=""
to follow the correct sequence.
But one of these fields reloads the page to bring values from the database, according to the inserted id.
I need that after reloading the page, the sequence continues from the last field where value was entered, but what is happening is that the cursor returns to the first input
of the page.
Does anyone know how I can resolve this problem?
Thank you!