# select **Repository Path**: mirrors_addons/select ## Basic Information - **Project Name**: select - **Description**: Programmatically select the text of a HTML element - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-03 - **Last Updated**: 2025-08-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 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 ``` ```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