I am working on a project that uses bootstrap
My question is:
How can I delete the title of popover
This is my code
<script>
$(document).ready(function(){
$('[data-toggle="popover"]').popover();
});
</script>
<a href="#" title="Header" data-toggle="popover" data-placement="left" data-trigger="hover" data-content="Some content">
CLICK HERE
</a>
And this is the resultset
This is resultset I want
Thanks
Just remove the attribute title from your anchor tag
<a href="#" data-toggle="popover" data-placement="left" data-trigger="hover" data-content="Some content">CLICK HERE</a>