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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T23:56:43+00:00 2026-06-06T23:56:43+00:00

http://jsfiddle.net/fzTak/7/ i came across one post telling this on stackoverflow but it is not

  • 0

http://jsfiddle.net/fzTak/7/

i came across one post telling this on stackoverflow but it is not having trash functionality to remove a single item from the sortable list and also how can we implement the size for the sortable list(which means if we give 5 as the size of the sortable list then it must take 5 elements, on drop of 6th element or so it must alert somehow)

any help on this is greatly appreciated

regards
blaaze

  • 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-06T23:56:44+00:00Added an answer on June 6, 2026 at 11:56 pm

    To only remove a single item instead of all, you can replace the find(class) with find(itembeingdragged) when it’s dragged back:

        $( ".draggable" ).droppable({
    
    
            drop: function  (event, ui) {
                              $("#sortable").find(ui.draggable).remove();
            } 
    
        }); 
    

    Of course that would mean that if you also want to have a remove all, that would have to be implemented separately

    As for the maximum amount: one way is to stop dragging alltogether by having the drag event return false inside the draggable (based on the number of items)

       $( ".draggable" ).draggable({
    
            connectToSortable: "#sortable",
    
            helper: "clone",
    
            revert: "invalid",
    
            drag: function(){
                var cnt = $("#sortable").find("li").size();
                return cnt < 5;
            }
    
        });
    

    Don’t know if stopping the drag is acceptable, but I thought it was the easiest way in the given scenario 🙂

    The updated fiddle: http://jsfiddle.net/fzTak/20/

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

Sidebar

Related Questions

http://jsfiddle.net/9aaNh/ Please check this Fiddle. I am having problem with spacing in between text
http://jsfiddle.net/aBaw6/2/ This demo does not add class when you hover a list item. What
http://jsfiddle.net/AndyMP/UpLts/1/ This is just an example for illustrative purposes, but what I want to
http://jsfiddle.net/TAvtJ/ Trying to do something more complex, but I seem to not understand the
http://jsfiddle.net/kCMvt/ Hey everyone. I made this jQuery page for a mobile phone, but the
http://jsfiddle.net/WTELW/4/ The following works fine on JSFiddle, but doesn't seem to work right in
http://jsfiddle.net/nWqYL/2/embedded/result/ I've been working on fixing some issues with this prototype site. Myself and
http://jsfiddle.net/DaJWC/ i can't figure out how to make one of the links reverse so
http://jsfiddle.net/9BCrs/5/ I have this set up to load a file into a DIV using
http://jsfiddle.net/VhjR7/1/ When you click the my lists menu once, it expands, but if you

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.