Skip to content

Instantly share code, notes, and snippets.

@luis-almeida
Created July 16, 2013 22:55
Show Gist options
  • Select an option

  • Save luis-almeida/6015967 to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown

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