0.0.1 • Published 9 years ago

caret-position v0.0.1

Weekly downloads
37
License
-
Repository
github
Last release
9 years ago

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 }