Back

Explore Courses Blog Tutorials Interview Questions
+1 vote
2 views
in DevOps and Agile by (29.3k points)

I'm using Bootstrap V4 and the following error is logged in the console;

Error: Bootstrap tooltips require Tether 

I have tried to remove the error by installing Tether but it hasn't worked. I have 'installed' Tether by including the following lines of code;

<link rel="stylesheet" href="http://www.atlasestateagents.co.uk/css/tether.min.css">

<script src="http://www.atlasestateagents.co.uk/javascript/tether.min.js"></script>

Have I 'installed' tether correctly? Can anyone help me remove this error?

1 Answer

+1 vote
by (19.4k points)

For bootstrap 4 (stable) doesn't require Tether but it requires propper.js (and all scripts should be in order) 

Only Bootstrap 4 alpha:

Bootstrap 4 alpha needs Tether, so you need to include tether.min.js before you include bootstrap.min.js, eg.

<script src="https://npmcdn.com/[email protected]/dist/js/tether.min.js"></script>

<script src="https://npmcdn.com/[email protected]/dist/js/bootstrap.min.js"></script>

Browse Categories

...