How can the cursor be focus on a specific input box on page load?
Is it posible to retain initial text value as well and place cursor at end of input?
Add this to the top of your js
var input = $('#myinputbox'); input.focus();
Or to html