Bootstrap tooltip not working in chrome

Bootstrap Tooltip does not work in chrome, but works fine in firefox.

<script type='text/javascript'> jQuery(document).ready(function () { if ($("[rel=tooltip]").length) { jQuery("[rel=tooltip]").tooltip({ placement: 'right', trigger: "hover" }); } }); </script> 

And also the placement does not work correctly in firefox, even after being defined as right, its display is only on top.

+1
javascript jquery google-chrome twitter-bootstrap twitter-bootstrap-tooltip
Aug 22 '13 at 5:52
source share
1 answer

You need to upgrade jQuery to at least 1.7 because it looks like bootstrap 2.2.1 uses .on() .

Look at your browser console, it causes an error

Uncaught TypeError: Object [object Object] does not have a 'on' method

+1
Aug 22 '13 at 6:10
source share



All Articles