Awsome jQuery plugin for tooltips

Appetizers

Hover over the boxes reveal the tooltips

Standard tooltip

Shows a tooltip positioned relative to the given element in an angle which can be at a 0, 90, 180, or 270 degrees.

$('#simple_box').dTooltip({
  angle: 270, 
  content: 'Content of the tooltip'
});
View CSS
More advanced tooltip

Add arrows pointing to the element in interest and add a hover style that is applied when the element of interest is hovered.

$('#advanced_box').dTooltip({
  angle: 0, 
  content: 'Content of the tooltip',
  cssClass: 'dtooltipOpacity',
  arrowSize: 20,
  hideDelay: 1000
});
View CSS

Features

DTooltip is designed to be flexible and still very simple to use. The main features are:

Get started

Download compiled

Get the compiled and minified version. Use this for production.

Download Minified

Download source

Get the readable source code for DTooltip. Use this for development.

Download Source

Include js files to your page

Remeber that you also have to include jQuery to your page. Add the following code just before the closing body tag.

<script src="js/dtooltip-min.js"></script>

License

DTooltip is realeased under the MIT and GPL licenses which means you are free to use this plugin, also in commercial products.