You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+5
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,9 @@
2
2
3
3
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.
4
4
5
+
__Updated:__
6
+
* Added min option to allow for a minimum number of characters allowed
7
+
5
8
__Features:__
6
9
* Ctrl & V paste support
7
10
* Right click & paste support
@@ -56,6 +59,7 @@ The following options are currently available:
56
59
```javascript
57
60
{
58
61
limit:150,
62
+
min:0,
59
63
counterWrapper:'span',
60
64
counterCssClass:'counter',
61
65
counterFormat:'%1',
@@ -67,6 +71,7 @@ customFields: {}
67
71
```
68
72
69
73
__limit__ - the number of characters you wish to limit.
74
+
__min__ - the number of characters you wish to set as the minimum allowed.
70
75
__counterWrapper__ - the element you wish to wrap your counter in.
71
76
__counterCssClass__ - the CSS class to apply to your counter.
72
77
__counterFormat__ - the format of your counter text where '%1' will be replaced with the remaining character count.
0 commit comments