Skip to content

Commit 107d3e6

Browse files
committed
update docs typos
1 parent 1d2a59f commit 107d3e6

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ See [DEMO](http://vsilva472.github.io/jquery-ensure-max-length) in action.
99
<script type="text/javascript">
1010
(function ( $ ) {
1111
// this is the same of $( 'table' ).TableSorter();
12-
$( '#my-field' ).EnsureMaxLength(
12+
$( '#field-selector' ).EnsureMaxLength(
1313
{
1414
limit: 100,
1515
cssClass: '',
@@ -22,7 +22,7 @@ See [DEMO](http://vsilva472.github.io/jquery-ensure-max-length) in action.
2222
```
2323

2424
## 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**:
2626
```
2727
<script src="path_to_jquery/jquery.min.js"></script>
2828
<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.
3737
```
3838

3939
### 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
4141
```
4242
<script type="text/javascript">
4343
(function ( $ ) {
44-
$( '#sample2' ).EnsureMaxLength({
44+
$( '#field-selector' ).EnsureMaxLength({
4545
limit: 250
4646
});
4747
} ( jQuery ));
4848
</script>
4949
```
5050
### 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.
5252
```
5353
/**
5454
* Add css classes
5555
*/
5656
<script type="text/javascript">
5757
(function ( $ ) {
58-
$( '#sample2' ).EnsureMaxLength({
58+
$( '#field-selector' ).EnsureMaxLength({
5959
cssClass: 'class1 class2 class3'
6060
});
6161
} ( jQuery ));
@@ -69,7 +69,7 @@ You can also changing the separator / to wherever symbol or word you want. In th
6969
*/
7070
<script type="text/javascript">
7171
(function ( $ ) {
72-
$( '#sample2' ).EnsureMaxLength({
72+
$( '#field-selector' ).EnsureMaxLength({
7373
separator: ' of '
7474
});
7575
} ( jQuery ));
@@ -82,7 +82,7 @@ You can also changing the separator / to wherever symbol or word you want. In th
8282
```
8383
<script type="text/javascript">
8484
(function ( $ ) {
85-
$( '#sample2' ).EnsureMaxLength({
85+
$( '#field-selector' ).EnsureMaxLength({
8686
placement: '#counter-container'
8787
});
8888
} ( jQuery ));

index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ <h2>Basic Usage:</h2>
122122
<div class="row">
123123
<div class="col-sm-12 sch">
124124
<h2>Changing default max chars</h2>
125-
<p>This plungin even works with textareas! <br />The folowing sample illustrates how to change the default max chars from 100 to 250</p>
125+
<p>This plugin even works with textareas! <br />The folowing sample illustrates how to change the default max chars from 100 to 250</p>
126126
</div>
127127
</div>
128128
<div class="col-sm-6">
@@ -149,7 +149,7 @@ <h2>Changing default max chars</h2>
149149
<div class="row">
150150
<div class="col-sm-12 sch">
151151
<h2>Adding some css classes</h2>
152-
<p>jQuery Ensure Max Legth allow you to add css class to customize counter.</p>
152+
<p>jQuery Ensure Max Length allow you to add css class to customize counter.</p>
153153
<p>The classes must be inserted as string separate by a space. <code>class1 class2 class3 ... class3</code></p>
154154
<p>In this sample we are adding <code>d-block text-right help-block</code> to counter element.</p>
155155
</div>

0 commit comments

Comments
 (0)