A Few of the Options

Default Settings
$('.tooltip-example-1').tooltipster();
					
Fixed Width + Position + Custom Style
$('.tooltip-example-2').tooltipster({
    fixedWidth: 400,
    position: 'bottom-left',
    tooltipTheme: '.tooltip-custom-2'
});
					
Delay + Mouse Tracking + Timer
$('.tooltip-example-3').tooltipster({
    arrow: false,
    delay: 500,		
    followMouse: true,
    position: 'top-right',
    timer: 8000,
    tooltipTheme: '.tooltip-custom-3'
});