Simpletip - A simple jQuery tooltip plugin

Simpletip - A simple jQuery tooltip plugin

Effects

Currently there are only two effects available by default in jQuery's base effects library, fade and slide:
View code Here's a pretty basic tooltip applied with the slide effect.
View code Here's another tooltip with the default fade effect.
View code Separate effects can be applied to show and hide events, like this slide-in fade-out tooltip.
Fortunately, there is also the option of custom methods for hiding and showing your tooltips! This is achieved by the use of the 'custom' showEffect/hideEffect property and the showCustom and hideCustom method callbacks, which are fired when the tooltip is shown or hidden. Examples:
View code Applying a custom show effect using the showEffect and showCustom properties.
View code Applying custom effects on both
A simple tooltip
show and hide.
If you require the hideTime or showTime properties you defined, they can be accessed as an argument of the custom callback function:
View code This new tooltip utilises the your configurations showTime property via a method argument.