I also do not see any documentation. But you can check with jQuery if the tooltip has an attribute-original-name. This attribute is added by the plugin when the element is initialized and is used for the text content of the tooltip.
if ($('.example').attr('data-original-title')) { console.log('Tooltip not initialized'); } else { console.log('Tooltip initialized'); // Change the tooltip content $('.example').attr('data-original-title', 'My new title'); }
ricardohdz
source share