Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@porfidev/simple-char-counter

porfidev35MIT1.0.3TypeScript support: included

A lightweight jQuery plugin that adds a real-time character counter to any input or textarea. As you type, it displays the current number of characters, making it easy to track limits and improve form usability. Perfect for forms, text fields, and UI vali

jquery, plugin, text, input, textarea, char counter, character counter

readme

simpleCharCounter.js

Jquery plugin, simulate the character counter like counter in twitter (old version). See demo and readme for more details.

Usage

$("#target").simpleCharCounter();

Defaults and Options

See demo for other basic uses.

$(".target").simpleCharCounter({
        max: 140,
        color: '#000',
        warnColor: '#F00',
        label: '',
        threshold: 0.2,
        displayMode: 'normal',
        onEmpty: 'none',
        legend: 'chars left',
        strictText: false
});

max: set limit amount of chars to write

color: set the basic color for the counter

warnColor: set the color when reaching limit of chars

label: container for text display

threshold: set limit radio of chars (max * threshold)

displayMode: available modes 'normal' the count text appears always, 'write' the count text appears when the user start to type

legend: change the count display text

strictText: set to true, if you want lock input, when the limit chars is reached (the input / textarea keeps enabled).


Developed by: @_zetta

Improved options by: @elporfirio