HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/shop.komma.nl/node_modules/select/readme.md
# select

[![Build Status](http://img.shields.io/travis/zenorocha/select/master.svg?style=flat)](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