Library Spotlight

Spotlight: Intro.js for User Onboarding

Create interactive product tours with Intro.js.

M. WarbleNovember 12, 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.

Related Articles

Security

Security by Default: How Oorian Protects Your Applications

January 11, 2026
Announcement

Why We Built Oorian: The Story Behind the Framework

January 7, 2026
Tutorial

Getting Started with Oorian: Your First Java Web Application

December 31, 2025