Skip to content

Commit 670fa4c

Browse files
author
Kurtis LoVerde
committed
fix typos
1 parent fbaba06 commit 670fa4c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You need to provide a container for all of the input fields. Within that contai
4242

4343
The plugin will duplicate the input field's immediate parent when creating a new field, so you should't define an ID attribute for the container.
4444

45-
You should provide and `id` and `name` attribute for your field(s), and they should be the same value.
45+
You should provide an `id` and `name` attribute for your field(s), and they should be the same value.
4646

4747
```html
4848

@@ -64,7 +64,7 @@ You should provide and `id` and `name` attribute for your field(s), and they sho
6464
} );
6565

6666
```
67-
AddRemoveTextbox also understands array notation, so you could use `id="txt[0]"`.
67+
AddRemoveTextbox also understands array notation, so you could use `id=txt[0]`.
6868

6969
You can also initialize AddRemoveTextbox on a large preexisting group of text boxes.
7070

@@ -75,11 +75,11 @@ See the included HTML file for more in-depth examples.
7575

7676
| Property | Description | Default Value |
7777
| ----------------- | --------------------------------------------------------------------------------------------------------------------------- |---------------|
78-
| `addButtonClass` | A CSS class to style the 'Add' button. The generated HTML will be a <>, so it is assumed that you will use CSS to define a background image. | addButton |
78+
| `addButtonClass` | A CSS class to style the 'Add' button. The generated HTML will be a <span>, so it is assumed that you will use CSS to define a background image. | addButton |
7979
| `addButtonTooltip` | Hover text for the 'Add' button | null |
80-
| `removeButtonClass` | A CSS class to style the 'Remove' button. The generated HTML will be a <>, so it is assumed that you will use CSS to define background image. | removeButton |
80+
| `removeButtonClass` | A CSS class to style the 'Remove' button. The generated HTML will be a <span>, so it is assumed that you will use CSS to define background image. | removeButton |
8181
| `removeButtonTooltip` | Hover text for the 'Remove' button | null |
82-
| `maxFields` | A optional limit on the number of fields which may exist under the applicable ID prefix. If a value is specified, it must be an integer greater than 1. | null (no limit) |
82+
| `maxFields` | An optional limit on the number of fields which may exist under the applicable ID prefix. If a value is specified, it must be an integer greater than 1. | null (no limit) |
8383

8484

8585
## Thanks

0 commit comments

Comments
 (0)