|
35 | 35 | <p>The Deferred object is chainable, similar to the way a jQuery object is chainable, but it has its own methods. After creating a Deferred object, you can use any of the methods below by either chaining directly from the object creation or saving the object in a variable and invoking one or more methods on that variable.</p>]]></desc>
|
36 | 36 | </category>
|
37 | 37 | <category name="Deprecated" slug="deprecated">
|
38 |
| - <desc><![CDATA[These items have been deprecated, though not necessarily removed, from jQuery.]]></desc> |
| 38 | + <desc><![CDATA[These items have been deprecated, though not necessarily removed, from jQuery. Be aware that these may be removed from future versions of jQuery.]]></desc> |
39 | 39 | </category>
|
40 | 40 | <category name="Dimensions" slug="dimensions">
|
41 |
| - <desc/> |
| 41 | + <desc><![CDATA[These methods are used to get and set the CSS dimensions for the various properties.]]></desc></desc> |
42 | 42 | </category>
|
43 | 43 | <category name="Effects" slug="effects">
|
44 |
| - <desc><![CDATA[The jQuery library provides several techniques for adding animation to a web page. These include simple, standard animations that are frequently used, and the ability to craft sophisticated custom effects. In this chapter, we'll closely examine each of the effect methods, revealing all of the mechanisms jQuery has for providing visual feedback to the user.]]></desc> |
| 44 | + <desc><![CDATA[The jQuery library provides several techniques for adding animation to a web page. These include simple, standard animations that are frequently used, and the ability to craft sophisticated custom effects.]]></desc> |
45 | 45 | <category name="Basics" slug="basics">
|
46 | 46 | <desc/>
|
47 | 47 | </category>
|
|
140 | 140 | </category>
|
141 | 141 | </category>
|
142 | 142 | <category name="Forms" slug="forms">
|
143 |
| - <desc/> |
| 143 | + <desc><![CDATA[These methods and event handlers handle forms and their various elements.]]></desc> |
144 | 144 | </category>
|
145 | 145 | <category name="Internals" slug="internals">
|
146 | 146 | <desc><![CDATA[Although this category is referred to as 'internal', any methods documented within the API site should be considered public and may be freely used. ]]></desc>
|
147 | 147 | </category>
|
148 | 148 | <category name="Manipulation" slug="manipulation">
|
149 |
| - <desc><![CDATA[All of the methods in this chapter manipulate the DOM in some manner. A few of them simply change one of the attributes of an element (also listed in the <a href="/category/attributes/">Attributes category</a>), while others set an element's style properties (also listed in the <a href="/category/css/">CSS category</a>). Still others modify entire elements (or groups of elements) themselves—inserting, copying, removing, and so on. All of these methods are referred to as "setters," as they change the values of properties. |
| 149 | + <desc><![CDATA[All of the methods in this section manipulate the DOM in some manner. A few of them simply change one of the attributes of an element (also listed in the <a href="/category/attributes/">Attributes category</a>), while others set an element's style properties (also listed in the <a href="/category/css/">CSS category</a>). Still others modify entire elements (or groups of elements) themselves—inserting, copying, removing, and so on. All of these methods are referred to as "setters," as they change the values of properties. |
150 | 150 | A few of these methods—such as <code>.attr()</code>, <code>.html()</code>, and <code>.val()</code>—also act as "getters," retrieving information from DOM elements for later use.
|
151 | 151 | ]]></desc>
|
152 | 152 | <category name="Class Attribute" slug="class-attribute">
|
|
210 | 210 | <category name="Selectors" slug="selectors">
|
211 | 211 | <desc><![CDATA[
|
212 | 212 | <p>Borrowing from CSS 1–3, and then adding its own, jQuery offers a powerful set of tools for matching a set of elements in a document.</p>
|
213 |
| - <p>If you wish to use any of the meta-characters ( such as <code> !"#$%&'()*+,./:;<=>?@[\]^`{|}~</code> ) as a literal part of a name, you must escape the character with two backslashes: <code>\\</code>. For example, if you have an element with <code>id="foo.bar"</code>, you can use the selector <code>$("#foo\\.bar")</code>. The W3C CSS specification contains the <a href="http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier">complete set of rules regarding valid CSS selectors</a>. Also useful is the blog entry by Mathias Bynens on <a href="http://mathiasbynens.be/notes/css-escapes">CSS character escape sequences for identifiers</a>.</p> |
| 213 | + <p>To use any of the meta-characters ( such as <code> !"#$%&'()*+,./:;<=>?@[\]^`{|}~</code> ) as a literal part of a name, it must be escaped with with two backslashes: <code>\\</code>. For example, an element with <code>id="foo.bar"</code>, can use the selector <code>$("#foo\\.bar")</code>. The W3C CSS specification contains the <a href="http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier">complete set of rules regarding valid CSS selectors</a>. Also useful is the blog entry by Mathias Bynens on <a href="http://mathiasbynens.be/notes/css-escapes">CSS character escape sequences for identifiers</a>.</p> |
214 | 214 | ]]></desc>
|
215 | 215 | <category name="Attribute" slug="attribute-selectors">
|
216 | 216 | <desc><![CDATA[
|
|
0 commit comments