So my Twitter Bootstrap popovers seem to be positionally challenged when the triggering element is contained within an element with the style
Twitter Bootstrap
popovers
For BS 3 and above
you can use container: $(element)
container: $(element)
Example:
let elem = $(this) $(elem).popover({ selector: '[rel=popover]', trigger: 'hover', container: $(elem), placement: 'bottom', html: true, content: 'Popover Content' });