Edit wording of jquery exercises

Removed 'the' from some of the questions for consistency. The rule applied: either use "the <target> element" or only "<target>" when not following with "element." Alternatively, instead of removing "the," you could instead add "element" to the end of each reference to a target. But as it was, the wording was inconsistent.

Also removed extra "from."
This commit is contained in:
Branden Byers
2015-01-12 13:29:41 -06:00
parent b30a3e9d93
commit d2ef354f60

View File

@ -7,12 +7,12 @@ block content
1: "Move the .target element from #location1 to #location2.", 1: "Move the .target element from #location1 to #location2.",
2: "Change the background color of .target to red.", 2: "Change the background color of .target to red.",
3: "Change the background color of the even-numbered targets to red.", 3: "Change the background color of the even-numbered targets to red.",
4: "Change the background color of the target4 to red.", 4: "Change the background color of target4 to red.",
5: "Clone the target2 in #location1 so that it also exists in #location2.", 5: "Clone target2 in #location1 so that it also exists in #location2.",
6: "Remove the target3 from element from #location1.", 6: "Remove the target3 element from #location1.",
7: "Check the following checkboxes using jQuery.", 7: "Check the following checkboxes using jQuery.",
8: "Make the text input field read-only.", 8: "Make the text input field read-only.",
9: "Select the target2 option in the select box.", 9: "Select target2 option in the select box.",
10: "Add the following css classes to .target: 'animated' and 'hinge'.", 10: "Add the following css classes to .target: 'animated' and 'hinge'.",
11: "Use jQuery to read the data of .target.", 11: "Use jQuery to read the data of .target.",
12: "Use 'length' to count the number of child elements in #location1, then display that value in #location2.", 12: "Use 'length' to count the number of child elements in #location1, then display that value in #location2.",