BBKing
BBKing

Reputation: 2309

html in tipsy tooltip jquery plugin

tipsy is plugin to facebook style tooltips using jquery. I want to be able to display HTML inside the tooltip. e.x : i have any image with class='test' when mouse over in image, i see tooltip with text(html) in <div></div>.

E.X :

<img class="test" src="test.jpg"> 
<div id="testtext"> bla bla bla ....</div>

Live Demo : Please mouse over in tags in stackoverflow answers. you see stats of tags.

Thanks.

Upvotes: 1

Views: 4583

Answers (1)

elclanrs
elclanrs

Reputation: 94131

From tipsy docs http://onehackoranother.com/projects/jquery/tipsy/:

$('#example-html').tipsy({html: true });

Upvotes: 6

Related Questions