I'm currently working on a form development project and I'm looking for guidance on how to navigate to different pages based on the selection made in a radio button. Here's the current form setup with two radio buttons:
.sh_k .sh_sl {
background-color: #edf7f8;
color: #282828;
font-size: 14px;
margin-bottom: 20px;
padding: 20px;
}
.sh_k .sh_sn {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-pack: justify;
justify-content: space-between;
}
... (CSS code continues)
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
... (HTML and CSS code continues)
I am aiming to achieve the following:
If the "Elaboration" option is selected, the form should redirect to elaboration.html
. If "Revision" is selected, then the form should redirect to revision.html
upon clicking the "Next" button.
I would greatly appreciate any guidance or assistance on how to implement this functionality in the form.