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?
Try:
Javascript Pure:
[elem][n].style.visibility='visible'; [elem][n].focus();
Jquery:
[elem].filter(':visible').focus();