| jquery Programming Glossary: posxCreate and access SVG tag with jQuery? http://stackoverflow.com/questions/11792754/create-and-access-svg-tag-with-jquery  ui  Get the mouse offset relative to the svg canvas var posX event.originalEvent.clientX this .offset .left var posY event.originalEvent.clientY.. 
 Horizontal scroll on mouseMove - wide div in smaller div with overflow:hidden (Can't get the math to work) http://stackoverflow.com/questions/16050564/horizontal-scroll-on-mousemove-wide-div-in-smaller-div-with-overflowhidden-c  mX 0 Real mouse position mX2 0 Modified mouse position posX 0 mmAA blW mPadd 2 The mousemove available area mmAAr blW mmAA.. Math.max 0 mX mPadd mmAA mmAAr setInterval function posX mX2 posX damp zeno's paradox equation catching delay th.css.. 0 mX mPadd mmAA mmAAr setInterval function posX mX2 posX damp zeno's paradox equation catching delay th.css marginLeft.. 
 Using jQuery how to get click coordinates on the target element http://stackoverflow.com/questions/3234977/using-jquery-how-to-get-click-coordinates-on-the-target-element  e.pageY  '#B' .click function e Offset mouse Position var posX this .offset .left posY this .offset .top alert e.pageX posX.. this .offset .left posY this .offset .top alert e.pageX posX ' ' e.pageY posY  '#C' .click function e Relative to its parent.. function e Relative to its parent mouse position var posX this .position .left posY this .position .top alert e.pageX.. 
 How to get the position of a draggable object http://stackoverflow.com/questions/4903530/how-to-get-the-position-of-a-draggable-object  this .offset  var xPos offset.left var yPos offset.top  '#posX' .text 'x ' xPos  '#posY' .text 'y ' yPos  JS Fiddle demo ... this .offset  var xPos offset.left var yPos offset.top  '#posX' .text 'x ' xPos  '#posY' .text 'y ' yPos  stop function  var.. improve the CSS. That said html div id dragThis ul li id posX x span span li li id posY y span span li li id finalX Final.. 
 Resizable, draggable object in jquery. Possible? http://stackoverflow.com/questions/4903863/resizable-draggable-object-in-jquery-possible  this .offset  var xPos offset.left  var yPos offset.top  '#posX' .text 'x ' xPos  '#posY' .text 'y ' yPos   stop function  var.. 1em margin 0 auto style head body div id dragThis ul li id posX li li id posY li li id finalX li li id finalY li ul div div.. 
 Create and access SVG tag with jQuery? http://stackoverflow.com/questions/11792754/create-and-access-svg-tag-with-jquery  '#drawArea' .droppable accept '.svg item' drop function event ui  Get the mouse offset relative to the svg canvas var posX event.originalEvent.clientX this .offset .left var posY event.originalEvent.clientY this .offset .top Get the dragged element.. 
 Horizontal scroll on mouseMove - wide div in smaller div with overflow:hidden (Can't get the math to work) http://stackoverflow.com/questions/16050564/horizontal-scroll-on-mousemove-wide-div-in-smaller-div-with-overflowhidden-c  mPadd 60 Mousemove Padding damp 20 Mousemove response softness mX 0 Real mouse position mX2 0 Modified mouse position posX 0 mmAA blW mPadd 2 The mousemove available area mmAAr blW mmAA get available mousemove fidderence ratio bl.mousemove function.. bl.mousemove function e mX e.pageX this.offsetLeft mX2 Math.min Math.max 0 mX mPadd mmAA mmAAr setInterval function posX mX2 posX damp zeno's paradox equation catching delay th.css marginLeft posX wDiff 10 Add to CSS .thumbs block position relative.. function e mX e.pageX this.offsetLeft mX2 Math.min Math.max 0 mX mPadd mmAA mmAAr setInterval function posX mX2 posX damp zeno's paradox equation catching delay th.css marginLeft posX wDiff 10 Add to CSS .thumbs block position relative THIS.. 
 Using jQuery how to get click coordinates on the target element http://stackoverflow.com/questions/3234977/using-jquery-how-to-get-click-coordinates-on-the-target-element  .click function e Default mouse Position alert e.pageX ' ' e.pageY  '#B' .click function e Offset mouse Position var posX this .offset .left posY this .offset .top alert e.pageX posX ' ' e.pageY posY  '#C' .click function e Relative to its parent.. e.pageY  '#B' .click function e Offset mouse Position var posX this .offset .left posY this .offset .top alert e.pageX posX ' ' e.pageY posY  '#C' .click function e Relative to its parent mouse position var posX this .position .left posY this .position.. 
 How to get the position of a draggable object http://stackoverflow.com/questions/4903530/how-to-get-the-position-of-a-draggable-object  drag event '#dragThis' .draggable  drag function  var offset this .offset  var xPos offset.left var yPos offset.top  '#posX' .text 'x ' xPos  '#posY' .text 'y ' yPos  JS Fiddle demo . This demo brought to you by the drag event and the methods offset.. .draggable  containment 'body' drag function  var offset this .offset  var xPos offset.left var yPos offset.top  '#posX' .text 'x ' xPos  '#posY' .text 'y ' yPos  stop function  var finalOffset this .offset  var finalxPos finalOffset.left var.. width' requirement and also to tidy up a few things and improve the CSS. That said html div id dragThis ul li id posX x span span li li id posY y span span li li id finalX Final X span span li li id finalY Final Y span span li li id width.. 
 Resizable, draggable object in jquery. Possible? http://stackoverflow.com/questions/4903863/resizable-draggable-object-in-jquery-possible   .draggable   containment 'body'  drag function  var offset this .offset  var xPos offset.left  var yPos offset.top  '#posX' .text 'x ' xPos  '#posY' .text 'y ' yPos   stop function  var finalOffset this .offset  var finalxPos finalOffset.left.. 12em padding 0.5em border 3px solid #f90 border radius 1em margin 0 auto style head body div id dragThis ul li id posX li li id posY li li id finalX li li id finalY li ul div div id dropHere div body html See comments   share improve this.. 
 |