Su pregunta tiene dos partes.
1) ¿Cómo enfocar una entrada en la carga de la página?
Simplemente puede agregar el autofocus
atributo a la entrada.
<input id="myinputbox" type="text" autofocus>
Sin embargo, es posible que esto no sea compatible con todos los navegadores, por lo que podemos usar javascript.
window.onload = function() {
var input = document.getElementById("myinputbox").focus();
}
2) ¿Cómo colocar el cursor al final del texto de entrada?
Aquí hay una solución que no es de jQuery con un código prestado de otra respuesta SO .
function placeCursorAtEnd() {
if (this.setSelectionRange) {
// Double the length because Opera is inconsistent about
// whether a carriage return is one character or two.
var len = this.value.length * 2;
this.setSelectionRange(len, len);
} else {
// This might work for browsers without setSelectionRange support.
this.value = this.value;
}
if (this.nodeName === "TEXTAREA") {
// This will scroll a textarea to the bottom if needed
this.scrollTop = 999999;
}
};
window.onload = function() {
var input = document.getElementById("myinputbox");
if (obj.addEventListener) {
obj.addEventListener("focus", placeCursorAtEnd, false);
} else if (obj.attachEvent) {
obj.attachEvent('onfocus', placeCursorAtEnd);
}
input.focus();
}
Aquí hay un ejemplo de cómo lograría esto con jQuery.
<input type="text" autofocus>
<script>
$(function() {
$("[autofocus]").on("focus", function() {
if (this.setSelectionRange) {
var len = this.value.length * 2;
this.setSelectionRange(len, len);
} else {
this.value = this.value;
}
this.scrollTop = 999999;
}).focus();
});
</script>