Back
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>
<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?
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>
<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>
31k questions
32.8k answers
501 comments
693 users