tree: 600d2ecec0e291ca6f2b93166deef7b8acadd312 [path history] [tgz]
  1. demo/
  2. dist/
  3. src/
  4. test/
  5. .editorconfig
  6. .npmignore
  7. .travis.yml
  8. bower.json
  9. karma.conf.js
  10. package.json
  11. readme.md
node_modules/select/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