sunslayer commented on a Page, JQuery tooltip  -  Dec 26, 2010

updated the code you can use the this keyword in place of the text to use the default text that would normally be displayed e.g.

<span id="tooltip" title="text here...">blah blah blah</span>

and use

$(function(){
    $("span#tooltip").hover(function(){
        $(this).toolTip({text:this});
    },function(){
        $(this).toolTip("destroy");
    });
});
 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.