I would like to make one of the choices of radio button options click out of the form and go to a different URL. Is this possible?
Thank you for any help or leads.
I would like to make one of the choices of radio button options click out of the form and go to a different URL. Is this possible?
Thank you for any help or leads.
Yes, it is possible to make a radio button option in a Gravity Form, click out of the form and go to a different URL. This can be achieved using the Gravity Forms HTML field.
Here’s how you can do it:
To make this process easier, here’s an example of what the HTML code for the radio button group might look like:
<input type="radio" name="example" value="option1">Option 1<br>
<input type="radio" name="example" value="option2" onclick="window.location.href = 'http://your-url.com';">Option 2 (redirects to http://your-url.com)<br>
<input type="radio" name="example" value="option3">Option 3
Following these steps, you can easily create a radio button option in a Gravity Form that redirects to a different URL. I hope this helps!
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.