Comment faire bootstrap-visite de travail?

J'ai ce code dans une page. Je suis en train de faire bootstrap-tour, mais il ne se passe rien. Ce que je fais mal? Ce qui me manque ici?

<!DOCTYPE html>
<html>
<head>

    <link href="bootstrap.css" rel="stylesheet">
    <link href="bootstrap-tour.css" rel="stylesheet">
    <link href="bootstrap-tour.min.css" rel="stylesheet">
    <!--[if lt IE 9]><script src="html5shiv.js"><![endif]-->
        <script>
    //Instance the tour
    var tour = new Tour();

    //Add your steps. Not too many, you don't really want to get your users sleepy
    tour.addSteps([
      {
      element: "#content", //string (jQuery selector) - html element next to which the step popover should be shown
      title: "Title of my step", //string - title of the popover
      content: "Content of my step" //string - content of the popover
    },
  {
    element: "#content1",
    title: "Title of my step",
    content: "Content of my step"
  }
 ]);

 //Initialize the tour
 tour.init();

 //Start the tour
 tour.start();
</script>


</head>
<body>


<div id="#content">
    Hello, World!
</div>
<br><br><br>
<div id="#content1">
    Another Hello, World!
</div>



<script src="jquery.js"></script>
<script src="bootstrap.tooltip.js"></script>
<script src="bootstrap.popover.js"></script>
<script src="bootstrap-tour.js"></script>
<script src="bootstrap-tour.min.js"></script>
</body>
</html>

J'ai cherché dans google, mais il semble que personne n'a jamais eu aucune difficulté à obtenir de la tour. Je ne sais pas ce qui me manque. Peut être quelques chose simple. Aider moi les gars. J'ai inclus ces fichiers:

CSS::

Bootstrap.css v3.0.0
bootstrap-tour.css - v0.8.0
bootstrap-tour.min.css - v0.8.0

JS::

bootstrap-tour.min.js - v0.8.0
bootstrap-tour.js - v0.8.0
bootstrap-popover.js v2.0.4
bootstrap-tooltip.js v2.0.4
jQuery JavaScript Library v1.9.0
Je pense que vous devriez appeler votre script dans l'en-tête ou de déplacer le script ci-dessous toutes les bibliothèques.
Il nécessite jquery avez-vous eu ça?
Non, ça ne fonctionne pas. J'ai juste essayé les deux façons.
Pourriez-vous montrer tous les scripts que vous appelez? Le code complet?
regardez les erreurs jeté dans le navigateur de la console.

OriginalL'auteur ST'' | 2013-12-28