@@ -9,7 +9,7 @@ See [DEMO](http://vsilva472.github.io/jquery-ensure-max-length) in action.
9
9
<script type="text/javascript">
10
10
(function ( $ ) {
11
11
// this is the same of $( 'table' ).TableSorter();
12
- $( '#my- field' ).EnsureMaxLength(
12
+ $( '#field-selector ' ).EnsureMaxLength(
13
13
{
14
14
limit: 100,
15
15
cssClass: '',
@@ -22,7 +22,7 @@ See [DEMO](http://vsilva472.github.io/jquery-ensure-max-length) in action.
22
22
```
23
23
24
24
## Basic usage
25
- * Add jquery ensure max length file to your page ** after jquery core** :
25
+ * Add jQuery Ensure Max Length file to your page ** after jquery core** :
26
26
```
27
27
<script src="path_to_jquery/jquery.min.js"></script>
28
28
<script src="path_to_plugin/jquery-ensure-max-length.js"></script>
@@ -37,25 +37,25 @@ See [DEMO](http://vsilva472.github.io/jquery-ensure-max-length) in action.
37
37
```
38
38
39
39
### Changing default max chars
40
- This plungin even works with textareas! . The folowing sample illustrates how to change the default max chars from 100 to 250
40
+ This plugin even works with textareas. The folowing sample illustrates how to change the default max chars from 100 to 250
41
41
```
42
42
<script type="text/javascript">
43
43
(function ( $ ) {
44
- $( '#sample2 ' ).EnsureMaxLength({
44
+ $( '#field-selector ' ).EnsureMaxLength({
45
45
limit: 250
46
46
});
47
47
} ( jQuery ));
48
48
</script>
49
49
```
50
50
### Adding css classes
51
- jQuery Ensure Max Legth allow you to add css class to customize counter. The classes must be inserted as string separate by a space.
51
+ jQuery Ensure Max Length allow you to add css class to customize counter. The classes must be inserted as string separate by a space.
52
52
```
53
53
/**
54
54
* Add css classes
55
55
*/
56
56
<script type="text/javascript">
57
57
(function ( $ ) {
58
- $( '#sample2 ' ).EnsureMaxLength({
58
+ $( '#field-selector ' ).EnsureMaxLength({
59
59
cssClass: 'class1 class2 class3'
60
60
});
61
61
} ( jQuery ));
@@ -69,7 +69,7 @@ You can also changing the separator / to wherever symbol or word you want. In th
69
69
*/
70
70
<script type="text/javascript">
71
71
(function ( $ ) {
72
- $( '#sample2 ' ).EnsureMaxLength({
72
+ $( '#field-selector ' ).EnsureMaxLength({
73
73
separator: ' of '
74
74
});
75
75
} ( jQuery ));
@@ -82,7 +82,7 @@ You can also changing the separator / to wherever symbol or word you want. In th
82
82
```
83
83
<script type="text/javascript">
84
84
(function ( $ ) {
85
- $( '#sample2 ' ).EnsureMaxLength({
85
+ $( '#field-selector ' ).EnsureMaxLength({
86
86
placement: '#counter-container'
87
87
});
88
88
} ( jQuery ));
0 commit comments