whenever i see a js code wanting to move the cursor to a text input field I see e.g.
is not only focus enough?
Code:
document.getElementById("username").focus();
document.getElementById("username").select();
Comment