I\'m looking forward to build a tooltip which is positioned next to the element, but in a middle of it. It\'s easy to put it over and under and position it in the horizontal cen
using CSS & jQuery-
.div{ top:50% }
var divheight = $(.div).height() / 2; $(.div).attr('style','margin-top:-'+divheight+'px;');