Skip to content

Commit fdd2feb

Browse files
author
Brian Singer
committed
Update README.md
1 parent ab9ca54 commit fdd2feb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
A simple, Twitter style character counter for HTML input fields. Based on your specified limit, the plugin simply adds a span ( by default ) after your HTML input and updates it as you type.
44

5+
__Updated:__
6+
* Added min option to allow for a minimum number of characters allowed
7+
58
__Features:__
69
* Ctrl & V paste support
710
* Right click & paste support
@@ -56,6 +59,7 @@ The following options are currently available:
5659
```javascript
5760
{
5861
limit: 150,
62+
min: 0,
5963
counterWrapper: 'span',
6064
counterCssClass: 'counter',
6165
counterFormat: '%1',
@@ -67,6 +71,7 @@ customFields: {}
6771
```
6872

6973
__limit__ - the number of characters you wish to limit.
74+
__min__ - the number of characters you wish to set as the minimum allowed.
7075
__counterWrapper__ - the element you wish to wrap your counter in.
7176
__counterCssClass__ - the CSS class to apply to your counter.
7277
__counterFormat__ - the format of your counter text where '%1' will be replaced with the remaining character count.

0 commit comments

Comments
 (0)