0.1.6 • Published 3 years ago

jquery-simple-txt-counter v0.1.6

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

jQuery Simple Text Counter

Install

using npm:

npm install jquery-simple-txt-counter

Usage

import 'jquery-simple-txt-counter/jquery-simple-txt-counter';

or

<script src="jquery-simple-txt-counter/jquery-simple-txt-counter.js"></script>

and

$('textarea').simpleTxtCounter({
    maxLength: 100,
    countText: 'Maximum:',
    countElem: '<div class="form-text"></div>',
    lineBreak: false,
});

Example

  • With customized insert
<div class="btn-group">
    <textarea maxlength="200"></textarea>
    <button type="button">ADD</button>
</div>
$('textarea').simpleTxtCounter({
    after: '.btn-group'
});

Options

OptionDefaultDescription
afterundefinedselector to after inserting the counter element
maxLengthundefinedMaximum size (maxlength attribute is used if it exists)
countTextundefinedPre text before counter
countElem<div/>Counter element
lineBreaktrueIf false, it does not allow line breakage