See this Pen:
On what browser and OS?
Chrome, Opera, Safari, Firefox, Vivaldi on MacOS (OSx). Haven't tested on Windows. If you load BS v. 3.3.6 in my CodePen the popovers works just fine.
In Windows also fails
Similar here, the tooltip is indeed triggered, but can't find it anywhere in the view.
Chrome 52.0.2743.116, Mac OSX 10.11.6;
Bootstrap 3.3.7
jQuery version should be checked when calculating elOffset so that this doesn't break for jQuery pre-3.x. Looks like the example Pen uses 2.2.4.
Bootstrap 3 is no longer being officially developed or supported.
All work has moved onto our next major release, v4. As such, this issue or pull request is being closed as a "won't fix." For additional help and support, we recommend utilizing our community resources. Thanks for your understanding, and see you on the other side of v4!
<3,
@mdo and team
As this topic still works with bootstrap 3.3.5 and even on top of jquery 3.2.1 i think it's not the right way to break a former behaviour and argument not to fix it due to dev on the upcoming version that is available as ALPHA only.
@ryanlabar, the problem is that you're still using jQuery 2. Bootstrap 3.3.7 requires you to use jQuery 3. The reason why the tooltips stopped working can be found on line 1623 in Bootstrap 3.3.7:
var isSvg = window.SVGElement && el instanceof window.SVGElement
// Avoid using $.offset() on SVGs since it gives incorrect results in jQuery 3.
// See https://github.com/twbs/bootstrap/issues/20280
var elOffset = isBody ? { top: 0, left: 0 } : (isSvg ? null : $element.offset())
Most helpful comment
As this topic still works with bootstrap 3.3.5 and even on top of jquery 3.2.1 i think it's not the right way to break a former behaviour and argument not to fix it due to dev on the upcoming version that is available as ALPHA only.