Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was hoping to craft a control where a user could click inside a div, then drag the mouse, then let up on the mouse in order to indicate how long they want something to be. (This is for a calendar control, so the user will be indicating the length, in time, of a certain event)

It looks like the best way to do this would be to register a "mousedown" event on the parent div that in turn registers a "mousemove" event on the div until a "mouseup" event is triggered. The "mousedown" and "mouseup" events will define the start and end of the time range and as I follow "mousemove" events, I can dynamically change the size of the range so that the user can see what they are doing. I based this off of how events are created in google calendar.

The issue I'm having is that the jQuery event seems to only provide reliable mouse coordimate information in reference to the whole page. Is there any way to discern what the coordinates are in reference to the parent element?

Also, if I should be going about this in a different way, I'm all ears. Thanks!

Edit:::::

Heres a picture of what I'm trying to do: alt text

share|improve this question
thanks for asking. – khanahk Mar 14 at 23:08

5 Answers

up vote 53 down vote accepted

I see Pointy's beat me to the punchline about changing the parent element's style to "position:relative", but another way that does not depend on the parent element's style is to use the jQuery offset method to translate the event.pageX and event.pageY coordinates from the event into a mouse position relative to the parent. Here's an example for future reference:

$("#something").click(function(e){
   var parentOffset = $(this).parent().offset(); 
   //or $(this).offset(); if you really just want the current element's offset
   var relX = e.pageX - parentOffset.left;
   var relY = e.pageY - parentOffset.top;
});
share|improve this answer
Yes this is a great idea if the parent element's layout can't/shouldn't be changed! – Pointy Nov 22 '10 at 20:12
Great , i was looking for this. I have being tring to do something similar to remember the scroll bar position with the tiny scrollbar jquery plugin. – Gayan L Mar 21 '12 at 5:06
I tried jquerys offsetX properties, but they displayed some wierd behaviour when moving over another element. your solution however worked! – jcfrei Jul 29 '12 at 23:07

If you make your parent element be "position: relative", then it will be the "offset parent" for the stuff you're tracking mouse events over. Thus the jQuery "position()" will be relative to that.

share|improve this answer
Hey Pointy, thanks for your response. Based on your wording, it sounds like what you are suggesting is different than what jball suggested, but I'm not understanding how, can you elaborate? Thanks again – Chris Dutrow Dec 2 '10 at 17:38
@DutrowLLC, Pointy is suggesting changing the style of the parent element to have "position:relative". The jQuery position would then report its positions relative to the parent element, not the page. The wording on my answer is poor, it implies that it is directly related to Pointy's solution, but it is a way of calculating the offset when you can't or don't want to depend on the style attributes of the parent element. – jball Dec 2 '10 at 17:43
@jbail exactly right! – Pointy Dec 2 '10 at 23:21
So if I set "position:relative" jQuery will report the relatiove position correctly in all browsers? The reason I ask is because the jQuery documentation seemed to imply that the only dependable mouse position in all browsers was the one in relation to the browser window itself. – Chris Dutrow Dec 4 '10 at 19:01
A box with "position: relative" will make the "top" and "left" (etc.) setting for child boxes by relative to the relative parent box's content rectangle. – Pointy Dec 4 '10 at 21:58
show 2 more comments

Just in case that you are looking for an official example take a look at
http://docs.jquery.com/Tutorials:Mouse_Position

share|improve this answer

I use this piece of code, its quite nice :)

    <script language="javascript" src="http://code.jquery.com/jquery-1.4.1.js" type="text/javascript"></script>
<script language="javascript">
$(document).ready(function(){
    $(".div_container").mousemove(function(e){
        var parentOffset = $(this).parent().offset();
        var relativeXPosition = (e.pageX - parentOffset.left); //offset -> method allows you to retrieve the current position of an element 'relative' to the document
        var relativeYPosition = (e.pageY - parentOffset.top);
        $("#header2").html("<p><strong>X-Position: </strong>"+relativeXPosition+" | <strong>Y-Position: </strong>"+relativeYPosition+"</p>")
    }).mouseout(function(){
        $("#header2").html("<p><strong>X-Position: </strong>"+relativeXPosition+" | <strong>Y-Position: </strong>"+relativeYPosition+"</p>")
    });
});
</script>
share|improve this answer
Dude. Thank you. – khanahk Mar 14 at 23:52

To get the position of click relative to current clicked element
Use this code

$("#specialElement").click(function(e){
    var x = e.pageX - this.offsetLeft;
    var y = e.pageY - this.offsetTop;
}); 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.