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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T12:38:29+00:00 2026-06-13T12:38:29+00:00

I am trying to trigger a drop event only on condition that all draggables

  • 0

I am trying to trigger a drop event only on condition that all draggables are dropped.

drop: function(event,ui){
            var dropd = "#"+ui.draggable.attr("id");
            if("#a_dra" && "#b_dra" && "#c_dra" && "#d_dra" == dropd){
                $("#whistle").get(0).play();
                dfd.resolve();
            };  
        },

With this code there is a problem. It works when every div is dropped and triggers correctly. Except when I drop only the #a_dra and #d_dra, it triggers as well, which is not desirable, since I need it random.

What am I missing in there?

Thanks in advance! 🙂

  • 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-13T12:38:30+00:00Added an answer on June 13, 2026 at 12:38 pm
    if("#a_dra" && "#b_dra" && "#c_dra" && "#d_dra" == dropd){
    

    The above line actually means

    if(("#a_dra" == true) && ("#b_dra" == true) && ("#c_dra" == true) && ("#d_dra" == dropd)) {
    

    You cannot shorthand comparison to multiple values like that.

    You can keep state for each draggable that gets dropped, so you can check if all of them have been dropped so that you can resolve your deferred:

    var dropped = {}
    
    ....
    
    drop: function(event,ui){
        var dropd = "#"+ui.draggable.attr("id");
        dropped[dropd] = true;
        if(dropped["#a_dra"] && dropped["#b_dra"] && dropped["#c_dra"] && dropped["#d_dra"]){
            $("#whistle").get(0).play();
            dfd.resolve();
        };  
    },
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to trigger the onScroll event this way using prototype: Event.observe(document, 'scroll',
I am basically trying to trigger a function if the footer is inside the
I'm trying to trigger the OnBeforePageUnload only when the user closes the tab or
I am trying to create a trigger to update another table with a condition
I am trying to automate my trigger process so that I don't have to
I'm trying to trigger function(s) when player.getCurrentTime() == 10 sec (and many more intervals
I am trying to trigger a mouse over drop down window in Watir on
I am trying to configure MySQL 5.1.63 so that it allows remote connections only
I'm trying to trigger the jQuery Autocomplete event externally. The problem is I'm using
I'm trying to trigger a button event in a gridview. I created a gridview

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.