Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typo on page/using-jquery-core/manipulating-elements.md #207

Merged
merged 1 commit into from
Dec 14, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion page/using-jquery-core/manipulating-elements.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ There are many ways to can change an existing element. Among the most common tas
* **`$.fn.attr`** - Get or set the value of the provided attribute.
* **`$.fn.width`** - Get or set the width in pixels of the first element in the selection as an integer.
* **`$.fn.height`** - Get or set the height in pixels of the first element in the selection as an integer.
* **`$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_.
* **`$.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_.
* **`$.fn.val`** - Get or set the value of form elements.

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.
Expand Down