Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kanety/jquery-insert-text


https://github.com/kanety/jquery-insert-text

Last synced: 8 days ago
JSON representation

Awesome Lists containing this project

README

        

# 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 `` or `contenteditable` elements:

```html
sample text

sample text

```

```javascript
$('textarea').insertText('YOUR TEXT');
$('div[contenteditable]').insertText('YOUR TEXT');
```

### Options

Insert text at first position:

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

Insert text at last position:

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

## License

The library is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).