I am trying to show a tooltip right next to an element, but i can't get the positioning right. I can set the vertical positioning, but somehow horizontal positioning gets ignored. What's wrong with this piece of code?:
$(document).tooltip({
content: 'tooltip',
items: '#plan',
position: { my: 'left top', at: 'left+150 top', of: '#plan' }
});
Here is a JSFiddle: http://jsfiddle.net/BFWx2/2/