89
jQuery wrap()
jQuery wrap() method is used to wrap specified HTML elements around each selected element. The wrap () function can accept any string or object that could be passed through the $() factory function.
Syntax:
Parameters of jQuery wrap() method
Parameter | Description |
---|---|
WrappingElement | It is a mandatory parameter. It specifies what HTML elements to wrap around each selected element. Its possible values are:
|
Function(index) | It is an optional parameter. It specifies a function that returns the wrapping element.
|
Example of jQuery wrap() method
Let’s take an example to demonstrate the jQuery wrap() method.
jQuery wrap() example 2
Next TopicjQuery serialize()