I\'ve been using this script http://jqueryfordesigners.com/coda-popup-bubbles/
and trying to use this fix to position the bubble according to where the user\'s mouse is
after the bubble is shown you need to set some function say timeout to update the bubble position according to mouse position.
function:
var x,y;//to track mouse positon
function UpdatePosition(){
$(ID_OF_BUBBLE).css({left:x+"px",top:y+"px"});
setTimeout("UpdatePosition()",100);
}
you may insert it here:
if (beingShown || shown) {
//SETUP timeout to a function which updates bubble's position
setTimeout("UpdatePosition()",100);
return;
add mouse move hook to get position:
$(document).ready(function(){
$().mousemove(function(e){
x=e.pageX ;
y=e.pageY;
});
.......
});
PS:- you may have to tweak position mode of the bubble