I have some very simple forms that will send the user to a specific webpage based on their selected radio option. I figured these would append the value to some sort of variable that something like jquery could read and forward onto the webpage we specify.
<form id="weight-loss">
<input type="radio" id="form1_option1" name="weight-loss" value="5_day" class="plan" /><label for="form1_option1"> 5 Day - All Inclusive Price</label><br />
<input type="radio" id="form1_option2" name="weight-loss" value="7_day" /><label for="form1_option2"> 7 Day - All Inclusive Price</label><br />
<input type="submit" value="Place Order" alt="Submit button" class="orange_btn" />
</form>
I can’t seem to find anything that really helps in this regard on the web. Thanks for all your help.
Demo: http://www.jsfiddle.net/pRhjq/