0.2.0 • Published 4 years ago

@kanety/jquery-insert-text v0.2.0

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

jquery-insert-text

Insert text to input or editable element.

Dependencies

  • jquery

Installation

Install from npm:

$ npm install @kanety/jquery-insert-text --save

Usage

Insert text at caret position of <textarea> or contenteditable elements:

<textarea>sample text</textarea>
<div contenteditable="true">sample text</div>
$('textarea').insertText('YOUR TEXT');
$('div[contenteditable]').insertText('YOUR TEXT');

Options

Insert text at first position:

$('textarea').insertText('YOUR TEXT', 'first');

Insert text at last position:

$('textarea').insertText('YOUR TEXT', 'last');

License

The library is available as open source under the terms of the MIT License.