Skip to content

Commit 14ae061

Browse files
committed
Merge pull request jquery#207 from eranws/patch-1
Fixed typo on page/using-jquery-core/manipulating-elements.md
2 parents da12e4d + 3a792c1 commit 14ae061

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

page/using-jquery-core/manipulating-elements.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ There are many ways to can change an existing element. Among the most common tas
1616
* **`$.fn.attr`** - Get or set the value of the provided attribute.
1717
* **`$.fn.width`** - Get or set the width in pixels of the first element in the selection as an integer.
1818
* **`$.fn.height`** - Get or set the height in pixels of the first element in the selection as an integer.
19-
* **`$fn.position`** - Get an object with position information for the first element in the selection, relative to its first positioned ancestor. _This is a getter only_.
19+
* **`$.fn.position`** - Get an object with position information for the first element in the selection, relative to its first positioned ancestor. _This is a getter only_.
2020
* **`$.fn.val`** - Get or set the value of form elements.
2121

2222
Changing things about elements is trivial, but remember that the change will affect all elements in the selection. If you just want to change one element, be sure to specify that in the selection before calling a setter method.

0 commit comments

Comments
 (0)