Javascript – Bootstrap popover without title

cssjavascriptjquerytwitter-bootstrap

I am using bootstrap popovers.There are many popovers on the page and in one of the popover , I dont want to display the title,when I dont give Title, it still shows that area where the title would have been.
Found an answer on How do you disable the title in Twitter Bootstrap's popover plugin?

but cant give css : display:none
to popover-title class since that would hide title from all other popovers also.

What should be the correct way to do this?
Thanks in advance.

Best Answer

Thanks.. got it worked by overriding the template

showpopover=function(message,context){
    var popover_message="<div>"+message+"</div>";
    //$(a).hide();
    $popover=$(context).popover({ placement:"bottom",trigger:"hover",template: '<div class="popover"><div class="arrow"></div><div class="popover-inner"><div class="popover-content"><p></p></div></div></div>',content:popover_message}).popover('show'); 
};

how i called the function is here:

html = html + "<td onmouseover=\"showpopover('"+main_image_data['score_reason']+"',this)\"><center>"+main_image_data['bonus']+"</center></td>";

It works :)