For advanced use cases, Tooltipster offers a set of methods to manipulate your tooltips. They allow you to create custom triggers, update tooltip content on the fly (whether the tooltip is currently open or not), destroy Tooltipster functionality if needed, reposition tooltips and more. Instance...
$(document).ready(function() { $('.tooltip').tooltipster({ content: $(this).attr('data-image') }); }); astrovish commented on Jun 19, 2014 I am not sure, the reason may be, since 'content:' uses only HTML content inside it and with $(this).attr('data-image') it is only...