0
This error appears when I press F12, and the Bootstrap data-toggle="tooltip" does not appear on the page anyone can help me?
Uncaught TypeError: $(...).tooltip is not a function
at HTMLDocument.<anonymous> (conf.js:39)
at j (jquery-1.11.1.min.js:2)
at Object.fireWith [as resolveWith] (jquery-1.11.1.min.js:2)
at Function.ready (jquery-1.11.1.min.js:2)
at HTMLDocument.J (jquery-1.11.1.min.js:2)
What does your F12 say on the "sources" list? Most likely, the definition of $.fn.tooltip was not loaded on your page. In fact, post the text of the function that contains line 39 of the file
conf.js
.– Wtrmute
$(Function () { $('[data-toggle="tooltip"]'). tooltip() });
– Everton Figueiredo
There is a file in the list of files loaded in the "sources" tab called
tooltip.js
? From what I understand of Bootstrap, this is the file that has the definition oftooltip()
, although it is usually carried inside thebootstrap.js
– Wtrmute
No, before this error has another, Uncaught Error: Popover requires tooltip.js , bootstrap.js:41
– Everton Figueiredo