Answered

Close Guided Tour Box When Element is Clicke

 

To close Guided Tour, the user has to click on the X icon. Please provide an option to automatically close the guided tour when the user clicks on the target or anywhere on the canvas.




2 people have this question
  • You can do that by using this JS snippet:

    jQuery('.fpd-container').on('elementSelect', function() {
      jQuery('.fpd-gt-close').click();
    })


  • I designed a plugin that fixes this and other small FPD bugs

Login or Signup to post a comment