.wrapInner( wrappingElement ) Returns: jQuery
Description: Wrap an HTML structure around the content of each element in the set of matched elements.
-
version added: 1.2.wrapInner( wrappingElement )
-
wrappingElementType: StringAn HTML snippet, selector expression, jQuery object, or DOM element specifying the structure to wrap around the content of the matched elements.
-
-
version added: 1.4.wrapInner( function(index) )
-
function(index)Type: Function()A callback function which generates a structure to wrap around the content of the matched elements. Receives the index position of the element in the set as an argument. Within the function,
this
refers to the current element in the set.
-
The .wrapInner()
function can take any string or object that could be passed to the $()
factory function to specify a DOM structure. This structure may be nested several levels deep, but should contain only one inmost element. The structure will be wrapped around the content of each of the elements in the set of matched elements.
Consider the following HTML:
1
2
3
4
|
|
Using .wrapInner()
, we can insert an HTML structure around the content of each inner <div>
elements like so:
1
|
|
The new <div>
element is created on the fly and added to the DOM. The result is a new <div>
wrapped around the content of each matched element:
1
2
3
4
5
6
7
8
|
|
The second version of this method allows us to instead specify a callback function. This callback function will be called once for every matched element; it should return a DOM element, jQuery object, or HTML snippet in which to wrap the content of the corresponding element. For example:
1
2
3
|
|
This will cause each <div>
to have a class corresponding to the text it wraps:
1
2
3
4
5
6
7
8
|
|
Note: When passing a selector string to the .wrapInner()
function, the expected input is well formed HTML with correctly closed tags. Examples of valid input include:
1
2
3
|
|
Examples:
Example: Selects all paragraphs and wraps a bold tag around each of its contents.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
|
Example: Wraps a newly created tree of objects around the inside of the body.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
|
Example: Selects all paragraphs and wraps a bold tag around each of its contents.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
|
Example: Selects all paragraphs and wraps a jQuery object around each of its contents.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
|