Show tooltipsy who’s boss.
Method |
Explanation |
show() |
Force the tooltip to show |
hide() |
Force the tooltip to hide |
destroy |
Remove the tooltip from DOM and memory
|
show() as a method call
// setup tooltipsy however you choose
$('.hastip').tooltipsy();
// show the tooltip on your command
$('.hastip').data('tooltipsy').show();
hide() as a method call
// setup tooltipsy however you choose
$('.hastip').tooltipsy();
// hide the tooltip on your command
$('.hastip').data('tooltipsy').hide();
destroy() as a method call
// setup tooltipsy however you choose
$('.hastip').tooltipsy();
// completely and utterly destroy an innocent tooltip
$('.hastip').data('tooltipsy').destroy();