katoikia-app/web-ui/web-react/node_modules/select
Maria Sanchez 5abf040b42 fix web ui template 2022-07-05 22:15:11 -06:00
..
demo fix web ui template 2022-07-05 22:15:11 -06:00
dist fix web ui template 2022-07-05 22:15:11 -06:00
src fix web ui template 2022-07-05 22:15:11 -06:00
test fix web ui template 2022-07-05 22:15:11 -06:00
.editorconfig fix web ui template 2022-07-05 22:15:11 -06:00
.npmignore fix web ui template 2022-07-05 22:15:11 -06:00
.travis.yml fix web ui template 2022-07-05 22:15:11 -06:00
bower.json fix web ui template 2022-07-05 22:15:11 -06:00
karma.conf.js fix web ui template 2022-07-05 22:15:11 -06:00
package.json fix web ui template 2022-07-05 22:15:11 -06:00
readme.md fix web ui template 2022-07-05 22:15:11 -06:00

readme.md

select

Build Status

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 file.

Usage

Standalone

<script src="dist/select.js"></script>
var input = document.querySelector('input');
var result = select(input);

Browserify

var select = require('select');
var input = document.querySelector('input');
var result = select(input);

License

MIT License © Zeno Rocha