Quick Start
Let's see how to add tutorials ton your pages and how to run them.
Requirements
Before continuing make sure you have added TutoBox to your page as shown here.
Add TutoBox attributes on the Elements
Three attributes are required.
data-tutoas the tutorial iddata-step-desas step descriptiondata-stepas the numerical order of the step
<button
  data-tuto="create-post"
  data-step-des="Click to publish the post"
  data-step="5"
>
  Send
</button>
Learn more about attribute here
Call the TutoBox startTuto(tutoId) function to run the tutorial
TutoBox.startTuto("create-post");