10 Excellent ToolTip Plugins with jQuery

Just Posted: Apple Likely to Give Education Rather than Resolution for iPhone 4 Antenna Issues

1) (mb)ToolTip

mbtooltip3

(mb)ToolTip is a nice a very good looking alternative to the native browser tooltip implementation. The plugin has two extra features whereby you can control the time that the tooltip appears, as well as including a nice drop shadow to the tooltip itself to make it really standout. Testing here on Safari 3/4 and FF3 proved very good.

Implementation can be as simple as:

<h2 tooltip="here it is my tooltip!">

2) clueTip

cluetip3

clueTip goes one step further than (mb)tooltip, it has many advanced options that you can utilize such as having the tooltip move with the mouse cursor, forcing the tooltip to stay on the page until a user action closes it, a really nice “loader” graphic which appears between the point that the event is fired and the tooltip is loaded, and much more.

The loader is actually very useful, especially when you are loading dynamic content into your tooltip via ajax for example. This effect basically stops the tooltip from appearing empty whilst the content loads.

Basic implementation is like many plugins, with the plugin displaying the HTML title attribute contents within the tooltip:

$('a.tips').cluetip();

3) Simple tooltip

simple
Simple tooltip is what it is, a very simple tooltip implementation. It’ll simply display a nice animated (fade in/out) tooltip with about as much effort as writing this sentence…

I have implemented Simple tooltip in my social buttons at the top and bottom of each article, so check it out.

$("#some-element").simpletooltip("Tooltip text here!")

4) Orbital

orbital2
The Orbital Tooltip plugin is slightly different in its implementation whereby it gives you, the developer, a lot more flexibility with the placement of the tooltip. As you can see in the screenshot above, you can be quite specific as to where in relation to the event call you can place the tooltip.

$('#square4').orbitaltooltip({
orbitalPosition: 	320,
spacing: 		10,
tooltipClass: 		'orbitaltooltip-simplebox',
html:			'<p>at 320</p>'
});

5) jQToolTip

vsimple

jQToolTip doesn’t really go anywhere previous examples have, but it’s another easy to use implementation of basic tooltips. You can set a delay time, as well as offset and opacity on your tooltip, so can be quite flexible.

6) Inline Tooltip

inline

Inline Tooltip allows you to create rich HTML tooltips very simply. The plugin replaces the default browser tooltip functionality by placing the tooltip directly under the link anchor. It also has the added benefit of dynamically moving the tooltip if it was likely to appear outside of the window view, which is a nice add-on.

<div class="htmltooltip">RSS stands for Really Simple Syndication, and is a type of XML file format.</div>

7) Thumbnail Hover Popup

thumbhoverThis is a little bit off piste, however it does have similar functionality to a tooltip plugin. Thumbnail Hover Popup dynamically loads an image in full size when you hover over it’s thumbnail counterpart. It’s okay, but doesn’t really do a lot for me. I think if you’re going to use it you really need to restrict the size of the “larger” image, as a better alternative is to show a modal window like Thickbox.

8) GoodTip

goodtipI’m actually gong to let the developer speak for this plugin as to why it’s any better than the rest: Why is it better? Because you can put it on anything! Because you can hook it! Because you can style it! Because you can get inline or title content! Because is SEXY! because it works (so far)! Because you can nudge it! Because I put alot of time into it and you love me. Because it TACKS!”

They have a point, it is very flexible and easy to use. Check out the demos here.

9) SimpleTip

simpletip

I really like SimpleTip. The flexibility built in is great, the documentation is great, and the demos on how to use it are also great! You’ve got positioning, effects, and dynamic content via load() options. Definitely one of the better implementations of a tooltip plugin.

$("#mydiv").simpleTip();

10) Light-Tooltip

easy

Light-Tooltip is pimped as the “Easiest tooltip and image preview” plugin using jQuery. It’s kind of a mixture between the other simply tooltip plugin implementations as well as the Thumbnail Hover Popup plugin we looked at in item (7). It is true however, that it is pretty darn easy to get tooltips to work using this plugin. It will take the title attribute (as others do) of an anchor tag for example and load that as the tooltip just by adding “class=”tooltip”” to your anchor. Nicely.

Tools to help you learn…

Learning jQuery 1.3

Learning jQuery 1.3

Amazon Kindle 2

Amazon Kindle 2

jQuery UI 1.6

jQuery UI 1.6

18 Responses to “10 Excellent ToolTip Plugins with jQuery”

  1. Thanks a lot for including clueTip in your roundup. Another one you might want to check out is BeautyTips, created by Jeff Robbins. Also, for people who need a huge number of tooltips on a given page, my bare-bones ezTip plugin works well (by taking advantage of event delegation).

  2. Steve Reynolds says:

    No problem Karl – always a pleasure.

  3. florin says:

    You’d have an A+ if you actually used the corresponding tooltip for each link.

  4. Steve Reynolds says:

    Hehe – Yeah that would have been awesome!

  5. caktux says:

    yup, +1 for qTip, successor of simpletip! :D

  6. Check out this very simple tooltip also, it can show you content from another file as well as us id tag to save link data, it also support images so that you can also show images on you tooltip, and it moves with mouse pointer.

    http://intekhabrizvi.wordpress.com/2010/01/21/jquery-very-simple-tooltip-plugin-ajax-enabled-2/

    Click Here

  7. Sylvia Rose says:

    Howdy!

    Nice list, nice tools!

    One other tool that you might want to check out is Likno Web Tooltips Builder:
    http://www.likno.com/jquery-tooltips/index.php

  8. great,thanks for sharing !!!

  9. succhia says:

    dio cane

Trackbacks/Pingbacks

  1. [...] can be as simple as: view plaincopy to [...]

  2. [...] 10 Excellent ToolTip Plugins with jQuery | Steve Reynolds Blog [...]

  3. [...] 10 Excellent ToolTip Plugins with jQuery [...]

  4. [...] 10 Excellent ToolTip Plugins with jQuery | Steve Reynolds Blog [...]

  5. [...] 10 Excellent ToolTip Plugins with jQuery | Steve Reynolds Blog [...]

  6. [...] 10 Excellent ToolTip Plugins with jQuery [...]

  7. Gweeby.com says:

    10 Excellent ToolTip Plugins with jQuery…

    Tooltips for your website…

  8. [...] The second candidate is jQuery UI, which is built on the other major JS framework, jQuery. I haven’t used jQuery UI, but it seems to do about the same stuff as scriptaculous, and it is also popular enough to have some free extensions / implementations, like these tooltips. [...]

Leave a Reply