how wrap div around two element with jquery

Yuseferi

I have some pair of element, they are

 <h3></h3><ul></ul>
 <h3></h3><ul></ul>
 <h3></h3><ul></ul>

I want to wrap a element (div) with jquery around all of this pair

result should be

<div> <h3></h3><ul></ul> </div>
<div> <h3></h3><ul></ul> </div>
<div> <h3></h3><ul></ul> </div>

How can I achieve it with jquery.wrap()?

Alex Char

You can iterate through h3 elements and using jquery .next() to select and the ul element with .andSelf() to include and h3 element and finally .wrapAll() around a div:

$('h3').each(function() {
  $(this).next('ul').andSelf().wrapAll('<div/>');
});
div {
  border: solid 1px red;
}
h3 {
  border: solid 1px green;
}
ul {
  border: solid 1px yellow;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<h3>h3</h3>
<ul>ul</ul>
<h3>h3</h3>
<ul>ul</ul>
<h3>h3</h3>
<ul>ul</ul>

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

how wrap div around two element with jquery

From Dev

How to wrap a link around a div jQuery?

From Dev

How to wrap an element with a div in jQuery?

From Dev

Wrap <a> around <div> without jQuery

From Dev

How to wrap div around image?

From Dev

JQuery, wrap div around every single div

From Dev

jQuery wrap a div around a massive block of HTML

From Dev

Wrap div around 2 sequential elements in jQuery

From Dev

jQuery wrap a div around a massive block of HTML

From Dev

Wrap a div around every 2 elements in jQuery

From Dev

How to find average of two numbers that wrap around?

From Dev

How to find average of two numbers that wrap around?

From Dev

How to wrap text around image in div?

From Dev

How to wrap div around <p> tag?

From Dev

How to wrap div element around newly typed text so that associated css result will be shown in real time

From Dev

How to wrap div element around newly typed text so that associated css result will be shown in real time

From Dev

How to wrap all elements inside a div after a certain element? (JQuery)

From Dev

How to wrap a div containing text around a div containing an image?

From Dev

Wrap div around a hidden div

From Dev

How to add two bytes together in Java, with wrap around if there is overflow

From Dev

wrap element around span text

From Dev

Wrap the textarea around a HTML element

From Dev

How to overlap image over the div, but still wrap text around an image?

From Dev

How to "shrink wrap" a div around it's floated children

From Dev

How to overlap image over the div, but still wrap text around an image?

From Dev

How to "shrink wrap" a div around it's floated children

From Dev

How can I wrap a div around existing elements?

From Dev

How do I wrap an a tag around a div tag?

From Dev

wrap div around other divs

Related Related

  1. 1

    how wrap div around two element with jquery

  2. 2

    How to wrap a link around a div jQuery?

  3. 3

    How to wrap an element with a div in jQuery?

  4. 4

    Wrap <a> around <div> without jQuery

  5. 5

    How to wrap div around image?

  6. 6

    JQuery, wrap div around every single div

  7. 7

    jQuery wrap a div around a massive block of HTML

  8. 8

    Wrap div around 2 sequential elements in jQuery

  9. 9

    jQuery wrap a div around a massive block of HTML

  10. 10

    Wrap a div around every 2 elements in jQuery

  11. 11

    How to find average of two numbers that wrap around?

  12. 12

    How to find average of two numbers that wrap around?

  13. 13

    How to wrap text around image in div?

  14. 14

    How to wrap div around <p> tag?

  15. 15

    How to wrap div element around newly typed text so that associated css result will be shown in real time

  16. 16

    How to wrap div element around newly typed text so that associated css result will be shown in real time

  17. 17

    How to wrap all elements inside a div after a certain element? (JQuery)

  18. 18

    How to wrap a div containing text around a div containing an image?

  19. 19

    Wrap div around a hidden div

  20. 20

    How to add two bytes together in Java, with wrap around if there is overflow

  21. 21

    wrap element around span text

  22. 22

    Wrap the textarea around a HTML element

  23. 23

    How to overlap image over the div, but still wrap text around an image?

  24. 24

    How to "shrink wrap" a div around it's floated children

  25. 25

    How to overlap image over the div, but still wrap text around an image?

  26. 26

    How to "shrink wrap" a div around it's floated children

  27. 27

    How can I wrap a div around existing elements?

  28. 28

    How do I wrap an a tag around a div tag?

  29. 29

    wrap div around other divs

HotTag

Archive