I tried installing intro.js on a meteor project:
I am using bootstrap 3 and meteor. I am wondering whether the positioning of the elements needs to be displayed differently.
var intro = introJs();
intro.setOptions({
steps: [
{
element: '#newGame',
intro: 'welcome to step one'
},
{
element: '#openModal',
intro: 'step two challenge a friend'
}
]
});
intro.start();
<a href="#" class="btn btn-primary" id="newGame">Play Random Opponent</a>
<button class="btn btn-primary" data-toggle="modal" id="openModal"
data-target="#challengeModal">Challenge a Friend</button>
I found a solution guys
well im not CSS guy but this works soo fine
pointer-events: none; is the issue causing this issue