- 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 multiple divs in one with jQuery?
To wrap multiple divs in one with jQuery, use the wrapAll() method. You can try to run the following code to wrap multiple divs in one 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() { $("#button1").click(function(){ $('.b,.c').wrapAll('<div class="wrap"></div>'); }); }); </script> <style> .wrap { color:blue; } </style> </head> <body> <div class='a'>This is div 1</div> <div class='b'>This is div 2</div> <div class='c'>This is div 3</div> <button id="button1">Wrap</button> </body> </html>
- Related Articles
- How to wrap an existing element with another one in jQuery?
- How to create wrapper div around two other divs with jQuery?
- How to wrap tables with div element using jQuery?
- How to select multiple elements with jQuery?
- How to use jQuery.wrapAll() to wrap multiple elements?
- 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 use multiple JavaScript libraries along with jQuery?
- How to trigger the same function with jQuery multiple events?
- How to wrap two adjacent elements in a containing div using jQuery?
- How to define multiple CSS attributes in jQuery?
- How to bind multiple events with one "bind" in Tkinter?
- How can I select an element with multiple classes in jQuery?
- jQuery one() with Examples
- How to Add and Remove multiple classes in jQuery?

Advertisements