- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to wrap an existing element with another one in jQuery?
To wrap an existing element with another one in jQuery, use the wrapAll() method. The wrapAll() method wraps all the elements in the matched set into a single wrapper element.
Example
You can try to run the following code to learn how to wrap an existing element with another one in jQuery:
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#button3").click(function(){ $('#demo, #demo2').wrapAll('<div class="demo3">'); }); }); </script> <style> div { background-color: green; } </style> </head> <body> <div id="demo"> <h2>Heading 2</h2> <p>This is demo text.</p> <p>Test</p> </div> <div id="demo2"> <h2>Heading 2</h2> <p>This is demo text.</p> <p>Test</p> </div> <button id="button3">Wrap all</button> </body> </html>
- Related Articles
- How to wrap multiple divs in one with jQuery?
- How to wrap tables with div element using jQuery?
- How to extend an existing JavaScript array with another array?
- How do you copy an element from one list to another in Java?
- How to move an array element from one array position to another in Java?
- How to append an element before an element using jQuery?
- How to append an element after an element using jQuery?
- How to clone an element using jQuery?
- How to trigger a hover event from another element using jQuery?
- How can I move an existing MySQL event to another database?
- Canva – How to select an element behind another element
- How can I select an element with multiple classes in jQuery?
- How to wrap first few items in div using jQuery?
- How to wrap and unwrap HTML control with a div dynamically using jQuery?
- How to access index of an element in jQuery?

Advertisements