Przesuń kursor na koniec wprowadzania - CSS-Tricks

Anonim

Gdzie eljest odniesienie do wejścia lub obszaru tekstowego.

function moveCursorToEnd(el) ( if (typeof el.selectionStart == "number") ( el.selectionStart = el.selectionEnd = el.value.length; ) else if (typeof el.createTextRange != "undefined") ( el.focus(); var range = el.createTextRange(); range.collapse(false); range.select(); ) )