I\'m using popover to display an image which doesn\'t require a title. If you don\'t set \"title\", it still displays an area where the title would be. How do you turn this of
You can also write a function to remove the element:
function removeTitle(){ $('.popover-title').remove(); } $("a[data-toggle=popover]") .popover({ html: true, animation: true }) .click(function(e) { removeTitle(); e.preventDefault() })