GitXplorerGitXplorer
z

select

public
165 stars
22 forks
1 issues

Commits

List of commits on branch master.
Unverified
53e4a21d674cdfb09026e0474d95dc3779e7ff4a

Release v1.1.2

zzenorocha committed 8 years ago
Unverified
b8576e518ad1a04ef71ef922ca3ebc8793a2598c

Prevent keyboard from showing on iOS

zzenorocha committed 8 years ago
Unverified
27e5cf6d6c0a027f1a5e9161d74e966f16223be8

Release v1.1.1

zzenorocha committed 8 years ago
Unverified
9904e8ea707c4866e374c469d9bfdaca1fc5b1ba

Prevent scroll jump on iOS

zzenorocha committed 8 years ago
Unverified
ba0aacad2c6ea7ed4f2fae42eda9987079ce6ef7

Updates devDependencies

zzenorocha committed 8 years ago
Unverified
14dfea00f4121b3d7995eb68fdbd9051e09b0b27

Release v1.1.0

zzenorocha committed 8 years ago

README

The README file for this repository.

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