Using jQuery, what is the most efficient way to split a list
<ul class="columnar"><li></li>... <li></li></ul>
in several subscriptions
<ul class="column1"><li></li>... <li></li></ul> <ul class="column2"><li></li>... <li></li></ul>
where each subscriptor (except, possibly, the last) has n elements.
I want the DOM queries and manipulations to be minimal and move the original DOM elements to new lists, rather than clone them.
source share