Description
The .wrap() method wraps specified HTML element(s) around each selected element.
v1.0
This method has the form:
.wrap(wrappingElement)
Parameter | Description |
---|---|
wrappingElement | (required) Specifies what HTML element(s) to wrap around each selected element.
Possible values:
|
Return Value
This form returns a jQuery object.
Wrap Elements Using a Function
Using a function to specify what to wrap around each selected element.
v1.4
This method has the alternate form:
.wrap(function())
Parameter | Description |
---|---|
function() | (required) Specifies a function that returns the wrapping element |
Return Value
This form returns a jQuery object.
Examples
Wrap a div element around each p element:
$("button").click(function(){
$("p").wrap("<div></div>");
});