Problem while positioning jQuery qtip tooltip.

Problem while positioning jQuery qtip tooltip.

Hi,
   I have an application which make use of the qtip for showing the tooltips.There is a div which shows the serach results like below.

<div id="results"><a href="#">Test</div>

Actually we want the tooltip to be active only once the content of the "results" is loaded completely.

So i have tried like this

jQuery('#results').load(function(){
     initalizeToolTip(this);
});

But when we position the mouse pointer over the link at the time of loading,the tooltip takes a position
which is different from the preference we set regarding the position.

Normally the tooltip appears in the correct position when we move the mouse over the link after loading.


Pls provide a solution to load the tooltip contents only after the results div is loaded completely


~Ragesh Kumar A.K