<script src="//ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js"></script>
$(document).ready(function() {
Ваш код
});
var TABLE_CELL = 'fp-tableCell';
$(document).ready(function(){
$('#content a').attr('target', '_blank');
});
window.onload = function(){
var anchors = document.getElementById('content').getElementsByTagName('a');
for (var i=0; i<anchors.length; i++){
anchors[i].setAttribute('target', '_blank');
}
}
$('#content a').each(function() {
var linky = new RegExp('/' + window.location.host + '/');
if (!linky.test(this.href)) {
$(this).attr("target","_blank");
}
});
.popover {min-width:300px;max-width:800px;}
<script>
$(function () {
$('[data-toggle="popover"]').popover()
})
</script>
<script>
$('[data-toggle="popover"]').popover({
html: true
})
</script>