Skip to content

Commit 6004e07

Browse files
authored
Update README
1 parent 56675a4 commit 6004e07

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# jQuery Ensure Max Length
2-
A simple, easy to use and customizable jquery plugin to limit chatacters inside input or textarea fields.
2+
A simple, easy to use and customizable jquery plugin to limit characteres inside input or textarea fields.
33
See [DEMO](http://vsilva472.github.io/jquery-ensure-max-length) in action.
44

55

66
## Default options
7-
The default pluigin options are:
7+
The default plugin options are:
88
```
99
<script type="text/javascript">
1010
(function ( $ ) {
11-
// this is the same of $( 'table' ).TableSorter();
11+
// this is the same of $( 'table' ).EnsureMaxLength();
1212
$( '#field-selector' ).EnsureMaxLength(
1313
{
1414
limit: 100,
@@ -27,7 +27,7 @@ See [DEMO](http://vsilva472.github.io/jquery-ensure-max-length) in action.
2727
<script src="path_to_jquery/jquery.min.js"></script>
2828
<script src="path_to_plugin/jquery-ensure-max-length.js"></script>
2929
```
30-
2. After import jquery ensure max length just call the plugin api:
30+
2. After import jQuery Ensure Max Length just call the plugin api:
3131
```
3232
<script type="text/javascript">
3333
(function ( $ ) {
@@ -48,7 +48,7 @@ This plugin even works with textareas. The folowing sample illustrates how to ch
4848
</script>
4949
```
5050
### Adding css classes
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.
51+
jQuery Ensure Max Length allow you to add css classes to customize counter element. The classes must be inserted as string separate by a space.
5252
```
5353
/**
5454
* Add css classes
@@ -62,7 +62,7 @@ jQuery Ensure Max Length allow you to add css class to customize counter. The cl
6262
</script>
6363
```
6464
### Changing separator
65-
You can also changing the separator / to wherever symbol or word you want. In this sample a are changing the "/" to " of ".
65+
You can also change the separator `/` to wherever symbol or word you want. In this sample a are changing the `/` to ` of `.
6666
```
6767
/**
6868
* Changing separator
@@ -77,7 +77,7 @@ You can also changing the separator / to wherever symbol or word you want. In th
7777
```
7878

7979
### Specifying where to append the counter element
80-
The use of 'placement' is optional and if you want to use it, you must pass a valid jquery selector to explicit tell to plugin where to append the counter element. [See sample5](https://vsilva472.github.io/jquery-ensure-max-length/#placement)
80+
The use of 'placement' is optional and if you want to use it, you must pass a valid jQuery selector to explicit tell to plugin where to append the counter element. [See sample5](https://vsilva472.github.io/jquery-ensure-max-length/#placement)
8181

8282
```
8383
<script type="text/javascript">
@@ -95,4 +95,4 @@ You can also changing the separator / to wherever symbol or word you want. In th
9595
* Initial Commit
9696

9797
#### License
98-
MIT
98+
MIT

0 commit comments

Comments
 (0)