Tagged Questions
0
votes
0answers
46 views
re-order list elements after few of them are removed
I'm using a wordpress plugin which is based on jquery isotope.
I've integrated a live search script which removes items which are not relevant to the search input.
So, basically when I click a ...
0
votes
2answers
145 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>
...
4
votes
2answers
103 views
Reorder HTML elements by class, not by id
I looked everywhere and could not find the answer so I hope this is somewhat unique. Every example I have seen of reordering elements uses ID's to swap or insert. However, I am getting a feed onto ...
0
votes
2answers
159 views
JQuery order div by value and skip if value is zero
I've done my ordering in my code but instead of reloading the whole json result, I want a client side reorder for my divs.
My C# code for ordering is:
.OrderBy(p=> p.order == 0? int.MaxValue : ...
0
votes
2answers
249 views
PHP wizard required, re-order/sort posts
I have posted this up in various forums, but no luck so far (hope its ok to post it here also?)...I have been trying for a few weeks...no success.
I have two pages on my blog (top rated and most ...
0
votes
1answer
528 views
How to reorder a ul li list by clicking on an link or button?
I need to move some selected items from a list by clicking on a link or button.
Giving 4 options to the user:
Put all selected items once backward or forward, or instead put all to the top of the ...
0
votes
1answer
153 views
JQuery Table Cell ordering Plugin
I to allow user to reorder images that are in a table cells.
I found TableDnD but this only can reorder table rows and not cells (I only need to swap td content using drag & drop & don't want ...
0
votes
4answers
189 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>
...
1
vote
1answer
209 views
Reorder by date with Ajax jQuery
I have a <li> with the possibility to drag and drop each item to reorder them and store the new rank to DB
here's the code :
$(document).ready(function () {
$('#reorder').sortable({
...
1
vote
1answer
145 views
jQuery - Possible to auto restripe a list after removing 1 list item between the rest?
I've created a multi email submission form in a scrollable div and have properly succeeded in automatically setting each email as a list item so I can zebra stripe the submission. I also can ...
2
votes
3answers
3k views
Using jQuery to re-order and animate list items?
So, I've got a list of items, something like:
<ul id="listHolder">
<li id="l1">List item 1</li>
<li id="l2">List item 2</li>
<li id="l3">List item ...
1
vote
0answers
209 views
A simple re-ordering of DIV's inside parent element using jQuery appendTo method
Making my first post here to get feedback on a particular solution to a problem that I dealt with yesterday. I came up with something that solves my problem and achieves the effect desired but I think ...
1
vote
3answers
203 views
Delay() bugged on table row reorder
I have a simple script to change pages order for a cms. It is based on reordering table rows with jQuery. Now the issue is, that I want to remove the highlight class from the full row with a delay. It ...
0
votes
1answer
266 views
MYSQL: how to “reorder” a table with discontinued idno?
The following code assumes the idno(primary key) is continued and starts from 1.
However, I set the id as auto increment and deletable.
As time goes, idno may not start from 1 and could be ...
2
votes
3answers
1k views
Reorder images using jquery
I have 4 small thumbnail images sitting side by side which when clicked upon each change a small div/panel underneath them to show different text.
When the image is clicked I want them to reorder by ...
6
votes
2answers
8k views
moving select options up and down via jquery
so I got this code working for Firefox and Chrome...what it does is it allows you to reorder the options within an HTML select form...but then when I tested the code via IE8, it's kind of patchy...it ...
2
votes
2answers
9k views
How to sort images in jquery/php/mysql same as google picassa reorder interface?
I am using PHP/MYSQL.
I want to create a image gallery for sorting images. User will drag and drop images to sort and organize their images. Just like picassa do this.
I have created a page using ...
0
votes
1answer
2k views
jQuery drag & drop and drag again
I'm working on a drag & drop page where you can drag elements from a list into various droppable containers. This works perfectly. What I am now trying to achieve is then have the ability to drag ...
0
votes
2answers
161 views
How do I reorder my input field by changing the attribute?
How do I reorder my inputs when my function is called?
ie: When the a2 delete button is clicked now I have a1, a3, and a4 I want to reorder this so that it is a1, a2 (was a3), and a3(was a4). I know ...