npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

jquery-textrange

v1.4.0

Published

A jQuery plugin for getting, setting and replacing the selected text in input fields and textareas.

Downloads

2,533

Readme

This jQuery plugin is for easily finding the starting and ending positions of selected text in text fields and textareas. It can also be used to set the selection, and replace the selection with given text (or insert text wherever the cursor is in the text field or textarea).

Demo

  • https://dwieeb.github.com/jquery-textrange/

Browser Support

  • Chrome
  • Firefox
  • Microsoft Edge
  • yes, even Internet Explorer 5.5+

Include

Include the file directly using <script> tags:

<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<script src="jquery-plugins/jquery-textrange.js"></script>

:memo: note: jquery-textrange can be loaded through any UMD-compatible Javascript Module Loader.

Methods

You can use this method to get all the information on the selected text of an element or a specific bit of information.

'get'

Get everything
$('input[name="example"]').textrange('get');

or for short:

$('input[name="example"]').textrange();

This will return a JSON object with the following information:

{
   "position": // cursor location in the text field)
   "start": //starting position of the selected text in the text field
   "end": // ending position of the selected text in the text field
   "length": // the length of the selected text in the text field
   "text": // the text that is selected
}
Get a particular property

This function can also be used to get a particular property of the object.

For example, this will obtain the starting location of the selected text:

var start = $('input[name="example"]').textrange('get', 'start');

'set'

You can use this method to set the starting and ending locations of the selected text in an element.

It works much like PHP's substr(), so if you're familiar with that, it should be a breeze! Here are some examples, anyway.

For the following examples, let's say input[name="example"] contains the text abcdef.

$('input[name="example"]').textrange('set'); // selects "abcdef" (select all)
$('input[name="example"]').textrange('set', 2); // selects "cdef"
$('input[name="example"]').textrange('set', 2, 3); // selects "cde"
$('input[name="example"]').textrange('set', 2, -2); // selects "cd"
$('input[name="example"]').textrange('set', -3); // selects "def"
$('input[name="example"]').textrange('set', -2, 1); // selects "e"
$('input[name="example"]').textrange('set', -4, -1); // selects "cde"

If you're looking to set the cursor at one specific location, you can use 0 for length, or you can use $().textrange('setcursor') (see below).

'setcursor'

You can use this method to set the location of the cursor in your text field.

To set the cursor at the fifth character position:

$('input[name="example"]').textrange('setcursor', 5);

'replace'

You can use this method to replace the selection with given text.

$('input[name="example"]').textrange('replace', 'some text');

There is also an insert alias for replace if you're using this method to insert text at the cursor location. They work the same way.