here is a form option with the 4 requested radio buttons, before it can submit you are going to give it an action value.
<form id="form1" name="form1" method="post" action="[VALUE]">
Main Topics
Browse All TopicsI am needing to created a form that has 4 radio button options:
Example
* Pay by Credit Card - Individual
* Pay by Check - Individual
* Pay by Credit Card - Couple
* Pay by Check - Couple
(Where the * represents the radio button selection).
I want to have 4 options and then based on the option the submit button opens a corresponding page. I'm using Dreamweaver. I know SOME (Minimal) coding. Is there a relatively simpole way to accomplish this?
Thanks.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
If your trying to get the user to choose and it jumps to a new page i would use a dropdown jump menu, then you wont need a submit button, one less thing the customer needs to click on
you will need to add this part in the <head> </head> section
<SCRIPT LANGUAGE="JavaScript">funct
{
var gourl = s.options[s.selectedIndex]
if ((gourl != null) && (gourl != "") )
{
window.top.location.href = gourl;
}
}
</SCRIPT>
Now add the bottom part inside the <body> </body> section
@ jimes82:
thanks :)
to improvise on the same code
I would add
<form id="form1" name="form1" method="post" action="javascript:void(0)
to avoid submission of values on page load.(when no url is assigned, or have a default one)
@JOrsak1968:
You can include the above suggestion...
Thanks for the grade and points.
Have a pleasant evening ahead.
Business Accounts
Answer for Membership
by: jason1178Posted on 2009-10-05 at 19:44:11ID: 25501550
Hi JOrsak1968,
>> I know SOME (Minimal) coding.
What do you know?