Add HTML in JQuery Tipsy Tooltips
Hey there,
I'm sure some of you guys are familiar with the jquery plugin,
tipsy. I want to be able to display HTML inside the tooltip but more like a div layer (<div id="tweet"></div>). I noticed I can put tags like bold and italic text inside the tooltip but not full divs. How would I go about doing that?
I'm trying to display a twitter script by
seaofclouds inside the tooltip. The script looks like this:
- <script type='text/javascript' src='site/scripts/jquery.tipsy.js'></script>
- <script type='text/javascript'>
- $(function() {
-
- $('#twitter').tipsy({title: "tooltip", gravity: 'n', html: true, fade: true });
-
- });
- </script>
Thanks for the help whoever it may be!
Ryan