Library Spotlight

Spotlight: Intro.js for User Onboarding

Create interactive product tours with Intro.js.

M. WarbleJuly 7, 20261 min read
Spotlight: Intro.js for User Onboarding

Intro.js helps new users learn your application through interactive guided tours. Oorian's wrapper makes creating tours easy.

Basic Tour

IjTour tour = new IjTour();
tour.addStep(saveButton, "Save Button", "Click here to save your changes");
tour.addStep(settingsMenu, "Settings", "Access application settings here");
tour.addStep(helpIcon, "Help", "Click for documentation and support");
tour.start();

Tour Events

tour.registerListener(this, TourCompleteEvent.class);

@Override
public void onEvent(TourCompleteEvent event)
{
    userPrefs.setTourCompleted(true);
}

Conclusion

Intro.js integration helps reduce support requests by guiding users through your application's features.

Share this article

Related Articles

Library Spotlight

Spotlight: Chart.js for Beautiful Data Visualization

January 27, 2026
Deep Dive

Logging and Error Handling in Oorian: A Complete Guide

February 24, 2026
Architecture

Event Handling in Oorian

February 19, 2026