I have a form where bootstrap tooltips are appended via Javscript. These elements have HTML title attributes (just like in the bootstrap example), and there are also elements in the form that have popovers which have been added using HTML as well.
For some reason, the tooltip appears on elements where I didn't initialize it - meaning that there is a clash between my popovers and tooltips.
I have tried using different tags like <span>
<div>
and <button>
in an attempt at preventing the conflict, but my popovers and tooltips continue to display at the same time.
Any ideas why this might be happening?