Before you can start running tours for your users, you need to first integrate Tour My App into your pages. Here is how you can do that.

 

Add these lines to the <head> section of every page that will use a tour. If you use a templating system or include system, then add it to your base template or header include.

 

  <link rel="stylesheet" href="https://tour.tourmyapp.com/static/tourmyapp/v1/tourmyapp.css" type="text/css">
  <script type="text/javascript" src="https://tour.tourmyapp.com/static/tourmyapp/v1/tourmyapp.js"></script>
  
  <script type="text/javascript">
  var tour;
  jQuery(document).ready(function() {
      tour = new TourMyApp("<put_your_token_here>"); // REPLACE WITH YOUR ACCOUNT TOKEN
      tour.start();
  });
  </script>

 

After this code has been integrated, your users will be able to see the tours you run on your application.