Is there a way to add jQuery UI tooltips without them appearing above the label? I've noticed that their positioning changes based on where I scroll the page - if the label is near the bottom of the page, the tooltip is close to it. The higher up the label is on the browser window, the higher the tooltip appears in relation to the label. I've tried using position during initialization but it doesn't seem to be working...
.js
$("label.info").tooltip();
.tpl file
<label class="info" title="Tooltip text"><img src="/img.png" id="someid" style="float:right; cursor: pointer" title="Something" alt="img"/></label>
Update:
After some investigation, I discovered that the issue stemmed from using jQuery 1.7.1 + UI 1.8.1 versions without the necessary tooltips library. Once I updated to newer versions with integrated tooltips everything worked perfectly.