Skip to content

Instantly share code, notes, and snippets.

@luis-almeida
Created July 16, 2013 22:55
Show Gist options
  • Save luis-almeida/6015967 to your computer and use it in GitHub Desktop.
Save luis-almeida/6015967 to your computer and use it in GitHub Desktop.
function moveCursorToEnd(el) {
el.focus();
if (el.setSelectionRange) {
var len = el.value.length * 2;
el.setSelectionRange(len, len);
} else el.value = el.value;
el.scrollTop = 999999;
}
@yairEO
Copy link

yairEO commented Nov 15, 2018

not working on Chrome

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment