Bootstrap Tour is a quick and easy way to build your product tours with Twitter Bootstrap Popovers.
Overview:
Bootstrap Tour is based on Bootstrap Popovers. It allows you to quickly set tours, easily defining the steps and their content.
Usage:
var tour = new Tour();
tour.addSteps([
{
element: "#my-element",
title: "Title of my step",
content: "Content of my step"
},
{
element: "#my-other-element",
title: "Title of my step",
content: "Content of my step"
}
]);
tour.init();
tour.start();