Skip to content

Commit 2fd67d7

Browse files
committed
Fixed typo ("Please noted that ..." -> "Please note that").
1 parent c2dc031 commit 2fd67d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

page/ajax/ajax-and-forms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jQuery’s ajax capabilities can be especially useful when dealing with forms. T
1111
### Serialization
1212
Serializing form inputs in jQuery is extremely easy. Two methods come supported natively - `$.fn.serialize` and `$.fn.serializeArray`. While the names are fairly self-explanatory, there are many advantages to using them.
1313

14-
The `serialize` method serializes a form's data into a query string. For the element's value to be serialized, it **must** have a `name` attribute. Please noted that values from inputs with a type of `checkbox` or `radio` are included only if they are checked.
14+
The `serialize` method serializes a form's data into a query string. For the element's value to be serialized, it **must** have a `name` attribute. Please note that values from inputs with a type of `checkbox` or `radio` are included only if they are checked.
1515

1616
```
1717
// Turning form data into a query string

0 commit comments

Comments
 (0)