Coordinates of a JQuery click element

$("#element").click(function(data) {
  var width = $(this).width();
  var height = $(this).height();

  var x = data.clientX - parseInt($(this).offset()['left']);
  var y = data.clientY - parseInt($(this).offset()['top']);

  var ret = new Object;

  if (y < (height/2)) { ret['vertical'] = "top"; }
  else { ret['vertical'] = "bottom"; }

  if (x < (width/2)) { ret['horizontal'] = "left"; }
  else { ret['horizontal'] = "right"; }

  ret['x'] = x;
  ret['y'] = y;
  ret['width'] = width;
  ret['height'] = height;

  console.log(ret);
  return(ret);
});


Note: Replies will be formatted with PHP Markdown Extra syntax.

Name: Email (Not Required):
 
Logged IP: 54.166.223.204
To prevent spam please submit by clicking the kitten: