Search.../

navigateToStep( )

Navigates to the given Wix Form step. If an invalid number is passed, navigateToStep() doesn't run.

Note: The WixFormsV2 element is only available in Wix Studio and Editor X.

Syntax

function navigateToStep(stepNumber: number): void

navigateToStep Parameters

NAME
TYPE
DESCRIPTION
stepNumber
number

Form step number. Counting starts from 1.

Returns

This function does not return anything.

Return Type:

void

Was this helpful?

Navigate to the given step number

Copy Code
1$w('#form').navigateToStep(5);