- 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 create wrapper div around two other divs with jQuery?
To create wrapper div around two other divs, use the wrapAll() method. You can try to run the following code to create wrapper div around two other divs with jQuery −
Example
<!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: yellow; } </style> </head> <body> <div class="demo"> <h2>Heading 2</h2> <p>This is demo text.</p> <p>Test</p> </div> <div class="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 create div dynamically using jQuery?
- How to place two divs next to each other in HTML?
- How to create a div element in jQuery?
- How to wrap tables with div element using jQuery?
- How to align two divs horizontally in HTML?
- How to wrap two adjacent elements in a containing div using jQuery?
- How to duplicate a div using jQuery?
- How to print div content using jQuery?
- How to create a seaborn.heatmap() with frames around the tiles?
- How to create wrapper objects in JShell in Java 9?
- How to toggle a div visibility using jQuery?
- How to wrap and unwrap HTML control with a div dynamically using jQuery?
- How to copy the content of a div into another div using jQuery?
- How to create a pop-up div on mouse over and stay when click using jQuery

Advertisements