I can't select elements within my popover for the Bootstrap framework. I've tried:
$("#button").popover({content:"<span id="test">Test</span>", html:true, placement:"bottom"});
And tried selecting the inner span with:
$("#test").html("foo");
This doesn't seem to work. Help!