|
4 | 4 | <signature> |
5 | 5 | <added>1.0</added> |
6 | 6 | <argument name="content"> |
7 | | - <desc>HTML string, DOM element, array of elements, or jQuery object to insert after each element in the set of matched elements.</desc> |
| 7 | + <desc>HTML string, DOM element, text node, array of elements and text nodes, or jQuery object to insert after each element in the set of matched elements.</desc> |
8 | 8 | <type name="htmlString"/> |
9 | 9 | <type name="Element"/> |
| 10 | + <type name="Text"/> |
10 | 11 | <type name="Array"/> |
11 | 12 | <type name="jQuery"/> |
12 | 13 | </argument> |
13 | 14 | <argument name="content" optional="true"> |
14 | | - <desc>One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements.</desc> |
| 15 | + <desc>One or more additional DOM elements, text nodes, arrays of elements and text nodes, HTML strings, or jQuery objects to insert after each element in the set of matched elements.</desc> |
15 | 16 | <type name="htmlString"/> |
16 | 17 | <type name="Element"/> |
| 18 | + <type name="Text"/> |
17 | 19 | <type name="Array"/> |
18 | 20 | <type name="jQuery"/> |
19 | 21 | </argument> |
20 | 22 | </signature> |
21 | 23 | <signature> |
22 | 24 | <added>1.4</added> |
23 | 25 | <argument name="function" type="Function"> |
24 | | - <desc>A function that returns an HTML string, DOM element(s), or jQuery object to insert after each element in the set of matched elements. Receives the index position of the element in the set as an argument. Within the function, <code>this</code> refers to the current element in the set.</desc> |
| 26 | + <desc>A function that returns an HTML string, DOM element(s), text node(s), or jQuery object to insert after each element in the set of matched elements. Receives the index position of the element in the set as an argument. Within the function, <code>this</code> refers to the current element in the set.</desc> |
25 | 27 | <argument name="index" type="Integer" /> |
26 | 28 | <return> |
27 | 29 | <type name="htmlString"/> |
28 | 30 | <type name="Element"/> |
| 31 | + <type name="Text"/> |
29 | 32 | <type name="jQuery"/> |
30 | 33 | </return> |
31 | 34 | </argument> |
32 | 35 | </signature> |
33 | 36 | <signature> |
34 | 37 | <added>1.10</added> |
35 | 38 | <argument name="function-html" type="Function"> |
36 | | - <desc>A function that returns an HTML string, DOM element(s), or jQuery object to insert after each element in the set of matched elements. Receives the index position of the element in the set and the old HTML value of the element as arguments. Within the function, <code>this</code> refers to the current element in the set.</desc> |
| 39 | + <desc>A function that returns an HTML string, DOM element(s), text node(s), or jQuery object to insert after each element in the set of matched elements. Receives the index position of the element in the set and the old HTML value of the element as arguments. Within the function, <code>this</code> refers to the current element in the set.</desc> |
37 | 40 | <argument name="index" type="Integer" /> |
38 | 41 | <argument name="html" type="String" /> |
39 | 42 | <return> |
40 | 43 | <type name="htmlString"/> |
41 | 44 | <type name="Element"/> |
| 45 | + <type name="Text"/> |
42 | 46 | <type name="jQuery"/> |
43 | 47 | </return> |
44 | 48 | </argument> |
|
0 commit comments