for some reason i need to put my mouse over "Details" anchor twice for the tooltip to appear. Why is that?
HTML code bit:
<a class="tt" data-animation="grow" data-position="left" data-speed="500" data-offsetx="41" data-offsety="38" data-maxwidth="683" data-interactive="true" data-theme=".tooltipster-standard" title="<div><h1>Package Name<span>£99.99</span></h1></div>">Details</a>
jQuery code:
$('.tt').mouseover(function(e){
$(this).tooltipster(addCaps($(this).data()));
});