Custom Navigation
1. Customizing Button Labels
Option
Default Value
Description
const cue = new Cue({
nextLabel: 'Proceed →', // More engaging "Next" button
prevLabel: '← Go Back', // Custom "Back" button
skipLabel: 'No Thanks', // A softer "Skip"
doneLabel: 'All Set!' // A friendly "Done"
});
cue.setSteps([
// ... your tour steps
]);
cue.start();2. Hiding Default Buttons
A. Hiding Globally
B. Hiding Per Step
3. Programmatic Tour Control
A. Advancing on Custom Button Click
B. Advancing on Form Input
C. Exiting the Tour from Custom Controls
D. Jumping to Specific Steps
Next Steps
Last updated