Basic

Tipper will generate a tooltip based on the target element's data-title. It can also be configured to open in multiple directions by passing the direction at initialization:

$(".target").tipper({
	direction: "top"
});
<a href="#" data-title="ToolTip Text">Tooltip Target</a>
Demo

Follow

You can also configure Tipper to follow the user's mouse:

$(".target").tipper({
	follow: true
});
Demo