I have two popovers on my page, which points to elements identified by their IDs:
$('document').ready(function() {
var popOverSettings = {
placement: 'right',
selector: '#diag1',
trigger: "hover"
};
$(this).popover(popOverSettings);
});
$('document').ready(function() {
var popOverSettings = {
placement: 'right',
selector: '#diag2',
trigger: "hover"
};
$(this).popover(popOverSettings);
});
Though only one is showing ? Any idea how to tweak the Js to allow multiple popovers (there me bay a few more, with an Id assigned dynamically)