0

If I use the arrow keys it works fine. But if I click on the next or back button opening a new page

I am using setOptions like below:

setOptions({
    steps:[{
        element: '#cmsinput', 
        intro: 'ENTER URL HERE', 
        position:'bottom'
    }],
    'showStepNumbers': 'false'
});
gvlasov
  • 18,638
  • 21
  • 74
  • 110
partha
  • 15
  • 3

1 Answers1

0

You're having this problem because introJs considers the tour complete for this page. The Done button runs the code in your oncomplete function. You can change the text of the Done button using the doneLabel option.

doneLabel: 'Next Page'

Seth
  • 26
  • 2