I need to go to a certain page based on a value selected in a drop down value list. Each value in this dropdown list will take the user to a different page once they select the “Next” button at the bottom at the page.
In Javascript programming, I could do something similar as
if ( value = “value1” ) {
return path 1 value
}
else if ( value = “value2” ) {
return path 2 value
}
etc.
Is there a way to do this in the page builder using a calc type of JSON attribute. Please let me know. Thanks!