Tagged Questions
0
votes
2answers
169 views
reorder list elements with mouse jquery
I have floating list elements and I want to make them draggable with mouse and move them to reorder. The structure is as follows:
<ul>
<li>item1</li>
...
0
votes
4answers
193 views
jquery re ordering <li> according to url parameters
I want to reordering my list of items according to the parameters in the URL.
Here's my list:
<ul>
<li><a href='page.php?paramValue=1'>iten1</a></li>
...
2
votes
2answers
1k views
reorder items algorithm
I've got an html table thus:
up | dn
[ ] Item 1
[x] Item 2
[ ] Item 3
[ ] Item 4
[x] Item 5
[ ] Item 6
[ ] Item 7
If 2 & 5 are checked and I click up, the result is:
up | dn
[x] Item 2
...