jQuery wrapAll()

jQuery wrapAll() method wraps the specified HTML elements around all the selected elements. Syntax: $(selector).wrapAll(wrappingElement) Wrapping Element: It is a compulsory parameter. It is used to specify the HTML elements to wrap around the selected elements. It can accept HTML elements, jQuery objects, and DOM elements as a value. Example1: <!DOCTYPE html> <html> <head> <script … Read more