I guess I am dumb as ** but I can't make it work without specifing the title attribute. Here is my code:
$('.js-client-info').popover({html : true, title: "ZOMG", content:"asdasdasdasdasdasd"});
Not working
$('.js-client-info').tooltip({html : true, title: "ZOMG", content:"asdasdasdasdasdasd"});
Not working
Rendering the following:
<a class="js-client-info" data-original-title="" title="">gg</a>
If I go and place the title attribute on the markup everything works ok. But i want to use the content property and load information with ajax calls. Help me please.
By not working I mean:
- popup never shows even if i call it with code $('.js-client-info').tooltip('show')