| javascript Programming Glossary: e.pagexTriggering a JavaScript click() event at specific coordinates http://stackoverflow.com/questions/2845178/triggering-a-javascript-click-event-at-specific-coordinates 
 onMouseMove get mouse position http://stackoverflow.com/questions/3011418/onmousemove-get-mouse-position  span span script divA .mousemove function e var pageCoords e.pageX e.pageY var clientCoords e.clientX e.clientY  span first .text.. var clientCoords e.clientX e.clientY  span first .text e.pageX e.pageY pageCoords span last .text e.clientX e.clientY clientCoords.. else grab the x y pos.s if browser is NS tempX e.pageX tempY e.pageY if tempX 0 tempX 0 if tempY 0 tempY 0 document.Show.MouseX.value.. 
 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  my html element jQuery #seek bar .click function e var x e.pageX e.target.offsetLeft alert x  I need to find the position of.. e '#A' .click function e Default mouse Position alert e.pageX ' ' e.pageY  '#B' .click function e Offset mouse Position var.. var posX this .offset .left posY this .offset .top alert e.pageX posX ' ' e.pageY posY  '#C' .click function e Relative to its.. 
 jquery ui drag easing/inertia http://stackoverflow.com/questions/4443526/jquery-ui-drag-easing-inertia   x1 lastE.pageX y1 lastE.pageY t1 lastE.timeStamp x2 e.pageX y2 e.pageY t2 e.timeStamp  Deltas var dX x2 x1  dY y2 y1  dMs.. 
 How do I efficiently highlight element under mouse cursor with an overlay? http://stackoverflow.com/questions/4711023/how-do-i-efficiently-highlight-element-under-mouse-cursor-with-an-overlay  elem.offset var width elem.width var height elem.height if e.pageX pos.left e.pageY pos.top  e.pageX pos.left width e.pageY pos.top.. height elem.height if e.pageX pos.left e.pageY pos.top  e.pageX pos.left width e.pageY pos.top height  var zIndex document.defaultView.getComputedStyle.. 
 Tracking mouse position in canvas when no surrounding element exists [closed] http://stackoverflow.com/questions/5085689/tracking-mouse-position-in-canvas-when-no-surrounding-element-exists  '#canvas' .mousemove function e var pos findPos this var x e.pageX pos.x var y e.pageY pos.y var coordinateDisplay x x y y writeCoordinateDisplay.. to the body so there is no offset to subtract. Similary e.pageX and e.pageY give the position of the cursor relative to the.. 
 Is there any way to accelerate the mousemove event? http://stackoverflow.com/questions/5329661/is-there-any-way-to-accelerate-the-mousemove-event  'mousemove' function e myContext.lineTo e.pageX e.pageY myContext.stroke false This is a known problem and the.. 'mousemove' function e coordsQueue.push e.pageX e.pageY false function drawLoop window.setTimeout function var.. 
 stop function that run with setTimeout http://stackoverflow.com/questions/5786646/stop-function-that-run-with-settimeout  var ycoord offsetfrommouse 1 if typeof e undefined  xcoord e.pageX ycoord e.pageY  else if typeof window.event undefined  xcoord.. 
 Define global variable in a JavaScript function http://stackoverflow.com/questions/5786851/define-global-variable-in-a-javascript-function  trailimageid .style  if typeof e undefined  xcoord e.pageX  ycoord e.pageY   else if typeof window.event undefined  xcoord.. 
 Get pixel color from canvas, on mouseover http://stackoverflow.com/questions/6735470/get-pixel-color-from-canvas-on-mouseover  .mousemove function e var pos findPos this var x e.pageX pos.x var y e.pageY pos.y var coord x x y y var c this.getContext.. 
 Click Entire Row (preserving middle click and ctrl+click) http://stackoverflow.com/questions/890743/click-entire-row-preserving-middle-click-and-ctrlclick  link.show  document .mousemove function e var y e.pageY x e.pageX Check to see if cursor is outside of tr If it is then hide the.. 0 y dim.y 1  return link.hide  link.css top e.pageY 5 left e.pageX 5  EDIT I created a jQuery plugin using a slightly better aproach.. 
 |