Tagged Questions
The wrapall tag has no wiki summary.
7
votes
1answer
755 views
Wrap every 3 divs in a div
Is it possible to use nth-child selectors to wrap 3 divs using .wrapAll. I can't seem to work out the correct equation.
so...
<div>
<div></div>
...
4
votes
2answers
55 views
Looking for a jQuery function similar to wrapAll that will only wrap consecutive elements
Is there a version of wrapAll that will only wrap consecutive elements? So this:
<p>foo</p>
<p>foo</p>
<h2>bar</h2>
<p>foo</p>
turns into this:
...
3
votes
3answers
42 views
Wrapping consecutive list items in separate groups using jQuery
I have an unordered list exported by a CMS and need to identify <li> elements that have the class .sub and wrap them in a <ul>.
I have tried the wrapAll() method but that finds all <li ...
3
votes
2answers
252 views
.slice and .wrapall
I'm using a bit of code suggested by a member on stackoverflow and adapted by me to wrap every 3 list items as part of a mega menu. The code is:
var lis = $("ul > li");
for(var i = 0; i < ...
1
vote
2answers
19 views
How can I group jQuery objects without using selectors?
The jQuery.wrapAll function takes a dom subtree and wraps it around a jQuery object. I want to do that but without aquiring the target jQuery object via selector: I have a bunch of references to ...
1
vote
5answers
104 views
jQuery: How to get the wrapper element created with “wrapAll()”?
Consider the following code: (live example here)
HTML:
<div class="a">Hello</div>
<div class="a">Stack</div>
<div class="a">Overflow</div>
CSS:
.wrapper {
...
0
votes
1answer
47 views
Jquery wrapAll ul li after paragraphs
I need to transform this :
<div id="truc">
<p>First</p>
<li>Item one</li>
<li>Item two</li>
<li>Item three</li>
...
0
votes
5answers
106 views
Wrapping groups of input elements with jQuery
I have following code:
<input type="checkbox" name="field_1" value="on" /> Checkbox field_1
<input type="checkbox" name="field_1" value="off" /> Checkbox field_1
<input ...
0
votes
1answer
212 views
jQuery: wrapAll but separate sets of elements?
I have a somewhat grouping system which all the elements between two divs are grouped together. See the code below to see what I'm trying to say:
$(document).ready(function(){
var groupo = ...
0
votes
2answers
157 views
How to wrapAll elements like this
<div id="editor">
text
<div id="wrap"> <!-- here -->
<img src="images/1.jpg"/>
</div>
text</p>
<div id="wrap"> <!-- and here -->
...
0
votes
1answer
242 views
Jquery .wrapAll problem
I'm parsing an xml file and I want to wrap children divs into a div called "new":
I have something similar to below:
function parseXml(xml)
{
$(xml).find("hotel").each(function()
{
$('<div ...
0
votes
6answers
2k views
Use JQuery to wrap multiple sets of elements in a Div
I'm working on a dropdown menu and need to mutate the existing html markup with JQuery to make it fit the design.
Here is a simplified example:
Wrap all "ul's" that contain more than one "li" in a ...
0
votes
2answers
489 views
Trying jQuery wrapAll seems to wrap the content twice
I got a markup looking like this :
<body>
<...
a lot of tags from the web site
...>
<script type="text/javascript" ...