Note that there are some explanatory texts on larger screens.

plurals
  1. POGroup list items with jQuery
    primarykey
    data
    text
    <p>I have a list like this:</p> <pre><code>&lt;ul&gt; &lt;li&gt;&lt;span class="date"&gt;2011 05 01&lt;/span&gt;&lt;p&gt;Text...&lt;/p&gt;&lt;/li&gt; &lt;li&gt;&lt;span class="date"&gt;2011 05 01&lt;/span&gt;&lt;p&gt;Text...&lt;/p&gt;&lt;/li&gt; &lt;li&gt;&lt;span class="date"&gt;2011 04 01&lt;/span&gt;&lt;p&gt;Text...&lt;/p&gt;&lt;/li&gt; &lt;li&gt;&lt;span class="date"&gt;2011 04 01&lt;/span&gt;&lt;p&gt;Text...&lt;/p&gt;&lt;/li&gt; &lt;li&gt;&lt;span class="date"&gt;2010 03 01&lt;/span&gt;&lt;p&gt;Text...&lt;/p&gt;&lt;/li&gt; &lt;li&gt;&lt;span class="date"&gt;2010 02 01&lt;/span&gt;&lt;p&gt;Text...&lt;/p&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>I need jQuery to group the items by both year AND month, like this:</p> <pre><code>&lt;ul&gt; &lt;li class="year"&gt;2011 &lt;ul&gt; &lt;li class="month&gt;May &lt;ul&gt; &lt;li class="item"&gt;&lt;span class="date"&gt;2011 05 01&lt;/span&gt;&lt;p&gt;Text...&lt;/p&gt;&lt;/li&gt; &lt;li class="item"&gt;&lt;span class="date"&gt;2011 05 01&lt;/span&gt;&lt;p&gt;Text...&lt;/p&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li class="month&gt;April &lt;ul&gt; &lt;li class="item"&gt;&lt;span class="date"&gt;2011 04 01&lt;/span&gt;&lt;p&gt;Text...&lt;/p&gt;&lt;/li&gt; &lt;li class="item"&gt;&lt;span class="date"&gt;2011 04 01&lt;/span&gt;&lt;p&gt;Text...&lt;/p&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li class="year"&gt;2010 &lt;ul&gt; &lt;li class="month&gt;March &lt;ul&gt; &lt;li class="item"&gt;&lt;span class="date"&gt;2011 03 01&lt;/span&gt;&lt;p&gt;Text...&lt;/p&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li class="month&gt;February &lt;ul&gt; &lt;li class="item"&gt;&lt;span class="date"&gt;2011 02 01&lt;/span&gt;&lt;p&gt;Text...&lt;/p&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;/ul&gt; </code></pre> <p>Thanks.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload