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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T14:36:51+00:00 2026-06-02T14:36:51+00:00

I created a draggable object that allows me to hide and show content when

  • 0

I created a draggable object that allows me to hide and show content when the object is dragged from left to right (to hide) then right to left (to show). The object can’t go any further than left or right (containment:”parent”). The event is fired on mouseup. However, the mouseup only works if the mouse cursor stays on the object. If the mouseup event is fired when the cursor has left the object, it doesn’t fire.

Can someone help me find a way to trigger the mouseup even if the cursor has left the object? ANy help would be much appreciated. Here’s a demo: http://www.madfrogdesigns.com/vault/mouseup/

This is my jquery code:

$(document).ready(function(){
    initCheckBoxes();
});

var slideSpeed = 200;
var leftDist = 20;

function initCheckBoxes()
{
    $(".toggle-slider").draggable({containment: "parent"});
    $(".toggle-slider").mouseup(function(){

    //Toggle markers;
    $(".content").fadeToggle(200);

    var status = $(this).attr("toggle-status");

    switch(status)
        {
            case "0":
            $(this).animate({left: leftDist}, slideSpeed);
            $(this).attr("toggle-status", "1");
            break;

            case "1":
            $(this).animate({left: "0"}, slideSpeed);
            $(this).attr("toggle-status", "0");
            break;
        }
    });
}
  • 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-02T14:36:54+00:00Added an answer on June 2, 2026 at 2:36 pm

    You need two separate events since if the mouseup occurs outside of the element it won’t originate from there:

    function initCheckBoxes()
    {
        $(".toggle-slider").draggable({containment: "parent"});
    
        var slideMouseDown = false;
    
        $('.toggle-slider').mousedown(function() {
          slideMouseDown = true;
        });
    
    
        $(document).mouseup(function() {
    
          if(slideMouseDown == true)
          {
            //Toggle markers;
            $('.content').fadeToggle(200);
    
            var sliderToggle = $('.toggle-slider');
            var status = sliderToggle.attr('toggle-status');
    
            switch(status)
            {
              case "0":
              //its off, slide it by 20px;
              sliderToggle.animate({left: leftDist}, slideSpeed);
              //change status to 1
              sliderToggle.attr("toggle-status", "1");
              break;
    
              case "1":
              //its 'on', slide it to 0px;
              sliderToggle.animate({left: "0"}, slideSpeed);
              //change status to 0
              sliderToggle.attr("toggle-status", "0");
              break;
            }
          }
    
          slideMouseDown = false;
        });
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I created a custom object that has a Bitmap field. I'm drawing several of
I have a form created in Windows Forms which is draggable wherever I click.
This is my current flow of JQuery: Object is created. Object has a function
Still picking my way through learning XAML/WPF. If someone can show me how to
I want to create a java application that allows users to import a web
i'm setting a click event on a div that is dynamically created in a
I have a few jQueryUI draggable objects that represent nodes generated on my front
I have a class that I borrowed from here that loads and image from
I can find a way to send parameters to my activity from my notification.
I am working on an application that pulls information from the internet. The information

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.