I am not able to start intro.js
with specific elements which are have class='test'
.I am using Intro.js v0.9.0
.
as per documentation, I written code just like following way.
<li class="test" data-intro="first Step" data-step="1"><a href="#" data-toggle="tooltip" data-placement="bottom" title="Chart" id="chart-btn"><i class="fa fa-bar-chart-o fa-lg"></i></a></li>
<li class="test123" data-intro="first Step" data-step="1"><a href="#" data-toggle="tooltip" data-placement="bottom" title="Reset" id="reset"><i class="fa fa-repeat fa-lg"></i></a></li>
<li class="test" data-intro="second Step" data-step="2"><a href="#" data-toggle="tooltip" data-placement="bottom" title="Compute" id="category"><i class="fa fa-play fa-lg"></i></a></li>
I tried to start intro
like this
introJs(".test").start();
It's not working.I goggled some guys suggested regarding this,I tried those ways also but it's not working.
How can I fix this.