jquery tooltip with ajax problem

jquery tooltip with ajax problem

$(".entry_with_comments").tooltip({
bodyHandler: function() {
var returnValue, movieID;
movieID = $(this).attr("id");
$(returnValue).load("testHTML.asp", {'movieID': movieID});
return $(returnValue).text();
},

});

Hi all,

I have a problem with that.... I want to load info from external file in to the tooltip and I know I have to use bodyHandler option but it doesn't work.... there is a problem with return line.... not shure what I haev to put there.....

Thank sin advance for help...