UNPKG

@wulperstudio/cms

Version:
11 lines (10 loc) 299 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.putCursorAtEndOfInput = putCursorAtEndOfInput; function putCursorAtEndOfInput(inputElement) { inputElement.focus(); var length = inputElement.value.length; inputElement.setSelectionRange(length, length); }