Merge pull request #6304 from dooglus/fix/nth_element_typo

Fix a typo. "all elements", not "all element".
pull/18182/head
Arsen Melikyan 2016-01-19 21:13:11 +04:00
commit 604e00d0e8
1 changed files with 1 additions and 1 deletions

View File

@ -907,7 +907,7 @@
"description": [ "description": [
"You've seen why id attributes are so convenient for targeting with jQuery selectors. But you won't always have such neat ids to work with.", "You've seen why id attributes are so convenient for targeting with jQuery selectors. But you won't always have such neat ids to work with.",
"Fortunately, jQuery has some other tricks for targeting the right elements.", "Fortunately, jQuery has some other tricks for targeting the right elements.",
"jQuery uses CSS Selectors to target elements. <code>target:nth-child(n)</code> css selector allows you to select all the nth element with the target class or element type.", "jQuery uses CSS Selectors to target elements. <code>target:nth-child(n)</code> css selector allows you to select all the nth elements with the target class or element type.",
"Here's how you would give the third element in each well the bounce class:", "Here's how you would give the third element in each well the bounce class:",
"<code>$(\".target:nth-child(3)\").addClass(\"animated bounce\");</code>", "<code>$(\".target:nth-child(3)\").addClass(\"animated bounce\");</code>",
"Make the second child in each of your well elements bounce. You must target the children of element with the <code>target</code> class." "Make the second child in each of your well elements bounce. You must target the children of element with the <code>target</code> class."