javascript - Bootstrap popover without title -


i using bootstrap popovers.there many popovers on page , in 1 of popover , dont want display title,when dont give title, still shows area title have been. found answer on how disable title in twitter bootstrap's popover plugin?

but cant give css : display:none popover-title class since hide title other popovers also.

what should correct way this? in advance.

thanks.. got worked overriding 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 called function here:

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

it works :)


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -