0

It works for the first time. So, i must have all my dependencies correct. Here's my tour code.

var tour = new Tour({
    name: 'First Tour.'
    steps: [
    {
        element: "#no1",
        title: "NUMBER",
        content: "Enter the no. of codes needed."
    },
    {
        element: "#no2",
        title: "TYPE",
        content: "Enter the type needed."
    }
    ]
});

tour.init();
tour.start();
DevanshBheda
  • 91
  • 1
  • 6
  • Try using `tour.start(true);` which will force start the tour. Refer [documentation](http://bootstraptour.com/api/) – Techie May 28 '16 at 06:09

1 Answers1

0

Remove the data in your local storage to force restart. In Chrome -> Console -> Resources -> Local Storage -> YOUR_URL -> remove all keys related to the tour: * tour_current_step * tour_end

Alex Stoicuta
  • 882
  • 9
  • 7