.wrapAll( wrappingElement ) Returns: jQuery
Description: Wrap an HTML structure around all elements in the set of matched elements.
-
version added: 1.2.wrapAll( wrappingElement )
-
wrappingElementA selector, element, HTML string, or jQuery object specifying the structure to wrap around the matched elements.
-
The .wrapAll()
function can take any string or object that could be passed to the $()
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 all of the elements in the set of matched elements, as a single group.
Consider the following HTML:
1
2
3
4
|
|
Using .wrapAll()
, we can insert an HTML structure around the 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 all matched elements:
1
2
3
4
5
6
|
|
Examples:
Example: Wrap a new div around all of the paragraphs.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
|
Example: Wraps a newly created tree of objects around the spans. Notice anything in between the spans gets left out like the <strong> (red text) in this example. Even the white space between spans is left out. Click View Source to see the original html.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
|
Example: Wrap a new div around all of the paragraphs.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
|
Example: Wrap a jQuery object double depth div around all of the paragraphs. Notice it doesn't move the object but just clones it to wrap around its target.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
|