Well theoretically sure, but the trouble I see is the rather messy HTML you'll have to use to get the tooltip to look that way:
Code:
ddrivetip('TEXT TO DISPLAY', 'OPTIONAL BACKGROUND COLOR', OPTIONAL TIP WIDTH)
Mainly, replacing "TEXT TO DISPLAY" with the desired HTML content. To cut down on the HTML mess, I guess one obvious route is to use CSS in combination, something like:
Code:
ddrivetip("<div class='leftcolumn'>Left column stuff here</div><div class='rightcolumn'>Right column stuff here</div>", 'OPTIONAL BACKGROUND COLOR', OPTIONAL TIP WIDTH)
where "leftcolumn" and "rightcolumn" would be two CSS classes that create the 2 column look you want. Still, it's not pretty.
Bookmarks