blob: abbc7a560a843c04ceb5799bc40a6b47725ccc2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# select
[](https://travis-ci.org/zenorocha/select)
Programmatically select the text of a HTML element.
## Install
You can get it on npm.
```
npm install select --save
```
Or bower, too.
```
bower install select --save
```
If you're not into package management, just [download a ZIP](https://github.com/zenorocha/select/archive/master.zip) file.
## Usage
### Standalone
```html
<script src="dist/select.js"></script>
```
```js
var input = document.querySelector('input');
var result = select(input);
```
### Browserify
```js
var select = require('select');
```
```js
var input = document.querySelector('input');
var result = select(input);
```
## License
[MIT License](http://zenorocha.mit-license.org/) © Zeno Rocha
|