I am currently using Bootstrap 3 popover feature for displaying a legend on click of a button
The legend is an image file and I want to display that image inside the popover window
But the image width is extending beyond the popover window width
Even on giving the width property does not change the popover window width.
Your help would be much appreciated.
HTML
<button id="btnLegend" class="btn btn-warning" data-toggle="popover">Legend</button>
Javascript
$(function () {
$('#btnLegend').popover(
{'placement':'bottom',
'content':"<img src=\"http://www.hopkinsmn.com/about/img/map-legend.gif\" alt=\"legend\">",
'title':'Popup Test',
'html':true,
'container':'body'
}
);
});
Here is my fiddle