The following code creates a tooltip using the jQuery qTip2 plugin. It works correctly in firefox, but in chrome the tooltips are bound to the top left of the viewport. In ie8 it doesn't work at all, but assuming that's a different issue....
$("option").qtip({
content: {
text: function() {
return $(this).attr('title');
}
},
position: {
my: 'right center',
at: 'left center',
target: this,
viewport: $(window)
},
show: {
solo:true
}
});
Here's a jsfiddle showing the behaviour