I'm trying to create a flow using HTML (code at bottom) I select "Cisco" and then go to the next box for me to select a type, I select "PE Router" and then go to the next set of options and select the device and so on until I'm done
How do I create something similar to continue? It will be used for troubleshooting to check and verify the steps that have been completed and what to try or do next, depending on the option selected.
Photo Example (https://i.stack.imgur.com/EAgGs.png)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|
I want it to go to that step when selecting an option For example "Yes" will go to the next option
With photo example (https://i.stack.imgur.com/4aWCd.png)
P粉6274272022024-02-27 12:04:11
You can do this using JavaScript.
First, you should set a special ID for the selected box; then this code will work:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|