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 8875359
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T18:57:28+00:00 2026-06-14T18:57:28+00:00

I have a sortable list on my page. I would like to know just

  • 0

I have a sortable list on my page. I would like to know just the user’s intension: what item he drags and where, i.e. old and new (potential) position of the dragged element.

But I DON’T want jQuery-sortable to actually change my DOM — I want to do it myself. Here is the example:

$(".sortable-list").sortable({
  items: ".sortable-item",
  stop: function (event, ui) {
    // prevent DOM changes
    $(this).sortable('cancel');
    // get the indices
    var oldIndex = $(this).find('.sortable-item').index(ui.item);
    var newIndex = 'how?'; // this is the question
  }
});

I know I can calculate new position using ui.originalPosition and ui.position, but I believe jQuery-sortable has already done this work since it puts a placeholder in a valid place, so I just want to get the value.

How do I do that?

  • 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-14T18:57:29+00:00Added an answer on June 14, 2026 at 6:57 pm

    Well, while I was writing a question I have actually found the solution.

    It turns out that jQuery-sortable does change the DOM before I call $(this).sortable('cancel'). What this call actually does is reverting the changes plugin has done.

    Here’s the working code:

    $(".sortable-list").sortable({
      items: ".sortable-item",
      stop: function (event, ui) {
        var newIndex = $(this).find('.sortable-item').index(ui.item);
        $(this).sortable('cancel');  // revert changes
        var oldIndex = $(this).find('.sortable-item').index(ui.item);
      }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a sortable list, each sortable item contains a table. I would like
I have a list of elements which I would like to make sortable and
I have a sortable list like this one: http://jqueryui.com/demos/sortable Is it possible to get
Let's say I have a sortable list like this: $(.song-list).sortable({ handle : '.pos_handle', axis
On a page I have a sortable list with thumbnails. When rolling over the
I have a page where i have a sortable list of items (a div
I have a selector like this: $list = $('ul.sortable'); for jQueryUI's sortable plugin. There
I have a sortable list of playing cards. In order to just show the
i have a form and a sortable() list where a user can drag from
In my page I have a sortable. At current I have some code like

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.