Is it feasible to showcase a Twitter feed within a Bootstrap popover? For instance, when the Twitter button is clicked, I aim to have my website's Twitter feed appear inside a Bootstrap popover.
I have attempted the code below without success. Any assistance would be greatly appreciated.
<a href="#" role="button" class="btn popovers" data-toggle="popover" title="" data-content=" <a class='twitter-timeline' data-chrome=nofooter noborders transparent data-width='250' data-height='350' href='https://twitter.com/myPage ref_src=twsrc%5Etfw'>Tweets by myPage</a>" data-original-title="test title">Test Button</a>
$("[data-toggle=popover]")
.popover({
html: true
});