Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 430 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 430 Bytes

caret-position

Get and set the user's text selection on an input or text area.

See test.html for example usage.

API

// Set caret position after the first character
caretPosition.set(input, 1)
caretPosition.get(input) // -> { start:1, end:1, caret:1 }

// Set text selection to the second and third character
caretPosition.set(input, 1, 3)
caretPosition.get(input) // -> { start:1, end:3, caret:3 }