1.0.0 • Published 6 years ago

jquery-fieldselection v1.0.0

Weekly downloads
4
License
ISC
Repository
github
Last release
6 years ago

jQuery - fieldSelection

A jQuery plugin to get'n'set the caret/selection.

Description

Retrieve the caret (text cursor) position from textareas and input fields as well as the actual selection and its index boundaries. Replacing the selection string is also supported. Unfortunately special treatment for such a simple thing is needed, because MSIE doesn't support the easy DOM 3.0 methods.

Status

First public release: getSelection and replaceSelection basically works.

Requirements

jQuery (tested with version 1.0.2+)

Usage sample

<script type="text/javascript" src="jquery-fieldselection.js"></script>
//Get Selected text
var selectedText = $('#id_textarea').getSelection();
           
//Replacing selection
$('#id_textarea').replaceSelection('new text here');

getSelection return sample:

{start: 162, end: 171, length: 9, text: "Selected text here"}

Gratitude

Thankyou to localhost a person who started this plugin.

License

Warranty

This program is free software. It comes without any warranty, to the extent permitted by applicable law. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See http://sam.zoy.org/wtfpl/COPYING for more details.