I wanted to integrate HTML (a link for example) within the tip, but it's impossible, since the tipped text is an anchor.
Modifying it to be a span tag, makes putting HTML within the tips possible.

<?php
$replace[] = '<span class="tooltip">' . $link  .'<span>'. $tip .'</span>'  . '</span>';
?>

Also - change the CSS file, to match. Turn all "a" selectors into "span".

Comments

tmallen’s picture

Right, but the hover effect itself would not work in IE6 without the wrapper being a link (unless JS were used). I think that a <div> could be used in place of the current <span>...testing.

TimAlsop’s picture

Did you manage to fix this ? I am interested to add HTML to my tips, but when I tried using

instead of it didn't work :-(
vishun’s picture

Check out this issue that we posted awhile ago that has an advanced version of the currently available development module except this includes HTML, CCKs, and more...

http://drupal.org/node/679692