how to load tooltip fater code example
Example: show tooltip automatically
$(document).ready(function() {
$('p').tooltip({
trigger: 'manual'
}).tooltip('show');
setTimeout(function(){ $('p').tooltip('hide'); }, 3000);
});
$(document).ready(function() {
$('p').tooltip({
trigger: 'manual'
}).tooltip('show');
setTimeout(function(){ $('p').tooltip('hide'); }, 3000);
});