मैं बूटस्ट्रैप पॉपओवर के अंदर HTML प्रदर्शित करने की कोशिश कर रहा हूं, लेकिन किसी तरह यह काम नहीं कर रहा है। मुझे यहाँ कुछ उत्तर मिले लेकिन यह मेरे लिए काम नहीं करेगा। कृपया मुझे बताएं कि क्या मैं कुछ गलत कर रहा हूं।
<script>
$(function(){
$('[rel=popover]').popover({
html : true,
content: function() {
return $('#popover_content_wrapper').html();
}
});
});
</script>
<li href="#" id="example" rel="popover" data-content="" data-original-title="A Title">
popover
</li>
<div id="popover_content_wrapper" style="display: none">
<div>This is your div content</div>
</div>