Can anyone explain why Bootstrap Tour doesn't start showing hints in the following code? I am very interested to use this plugin for my webpages, but I can't make it work:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap tour test</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link href="bootstrap-tour.min.css" rel="stylesheet">
<script src="bootstrap-tour.min.js"></script>
</head>
<body>
<div class="container">
<div id="tour1">First div...</div>
<div id="tour2">Second div...</div>
</div>
<script>
var tour = new Tour({
steps: [
{
element: "#tour1",
title: "Step 1",
content: "This is the first div"
},
{
element: "#tour2",
title: "Step 2",
content: "This is the second div"
}
]});
tour.init();
tour.start();
</script>
</body>
</html>
I have read and followed examples from different sources on the web, but the hints doesn't show...