jQuery sortable drop within itself.
- by Janis Peisenieks
So my question here is:
Can I place a sortable element within another sortable element of the same level. Example:
<ul class="sortable">
<li class="subsortable">Some text</li>
<li class="subsortable">Some text</li>
</ul>
into:
<ul class="sortable">
<li class="subsortable">Some text<li class="subsortable">Some text</li></li>
</ul>
I've been trying to do this for a day now, and I can't seem to find a way to do this.