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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T19:40:27+00:00 2026-06-05T19:40:27+00:00

How do you track mouse motion after mousedown until mouseup using JQuery? Tracking should

  • 0

How do you track mouse motion after mousedown until mouseup using JQuery? Tracking should start when some target element is clicked and continue to mouseup, even when the mouse moves out of the target element.

<div id="some_elt">
   <div id="target">
   </div>
</div>

The only way I can think of is binding mousemove to the whole document and invoking my motion handler based on a global flag I set from $("target").mousedown and unset from$("target").mouseup.

Is there a more elegant approach than this?

Edit: I think I need to add an extra bit… my target already has draggable() applied to it. I’m trying to make a decent image viewer. I have a viewport div containing a draggable img. I’m trying to do make the image zoomable with something like shift+middle-click, without interfering with the draggable for navigating. Am I going to have to piggyback on stuff that JQuery does under the hood to make draggable work?

Edit2: To answer my edit: of course not! JQuery is awesome!

  • 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-05T19:40:28+00:00Added an answer on June 5, 2026 at 7:40 pm

    Use event target to start tracking

    $(document).mousedown(function(event){
       if( event.target.id=="target"){
         $(this).on('mousemove',function(event){
              /* do tracking*/
          })
       }
    }).mouseup(function(){
        $(this).off('mousemove');
    })
    

    For versions of jQuery less than 1.7

    $(document).mousedown(function(event){
       if( event.target.id=="target"){
         $(this).mousemove(function(event){
              /* do tracking*/
          })
       }
    }).mouseup(function(){
        $(this).unbind('mousemove');
    })
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using cvSetMouseCallback to track mouse clicks. However I need to pass in
I'm new at using actionListener and mouselistner . I want to track the Mouse
What's the best way to track the mouse speed with plain JS/JQuery? I'd like
This should be typically easy, I want to perform tracking of mouse movements. I'm
I know you can track a svn repo with git by using git svn
I'm trying to track down a memory leak in a java process, using jmap
I am trying to track mouse movements in the browser, and if a user
How to track the mouse position on the screen regardless of application.i.e. Whenever the
I would like to keep track of all mouse events at system level (not
I'm receiving errors from Gtk that I can't track down. Every time my mouse

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.