Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9302243
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T23:12:36+00:00 2026-06-18T23:12:36+00:00

I have a jQuery sortable list of unknown size and I need to update

  • 0

I have a jQuery sortable list of unknown size and I need to update the item ordering when a item is re-positioned. I have the items position showing and I have the position updating when the item is moved however when an item is moved the other positions are not updated. For example, if my sortable list has 3 items with ordering 1, 2, 3 and I decide to move item 2 to position 3 the new ordering is 1, 3, 3. I want it to update to 1, 2, 3. Any ideas how I can achieve this? Here is my code for updating the position. Thanks.

    $("#sortable2").sortable({
        stop: function(event, ui) {
            var id = $(ui.item).attr('id');
            $("#" + id).html(ui.item.index() + 1); 
        }
    });
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T23:12:37+00:00Added an answer on June 18, 2026 at 11:12 pm

    Try this:

    $("#sortable").sortable({
        stop: function(event, ui) {
            $('li').each(function(idx){
                $(this).html(idx+1);
            });
        }
    });
    

    Basically, you need to iterate over each element. Also, index is 0 based.

    JSFIDDLE

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a jQuery UI Sortable list. The sortable items also have a click
Little help need with jquery sortable. I have a nested list like so: <div
I have a jQuery-UI sortable list of items. I want to drop an element
I have a list of items that I need to record its position in
I am trying to send a jquery sortable list of items to my MVC
I have a sortable list of folders using JQuery UI. The thing is that
I have a problem with a jQuery UI 1.7.2 sortable list in Firefox 3.6,
I have am using a sortable jQuery list. I would like to send the
Working with jQuery UI sortable to move around a list of items, and trying
I have a page where i have a sortable list of items (a div

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.