I have the following form fields:
<label for="carrier_sold">Carrier Sold: </label>
<select name="carrier_sold" id='carrier_sold'>
<option id='carrier_sold' value="" selected="selected"></option>
<option value="MetLife">Metlife</option>
<option value="Travelers">Travelers</option>
</select>
If I select the Metlife value, I need to get Bill, Full as my dropdown list value below.
If I select the Travelers value, I need to get EFT, RCC as my value below.
<label for="payment_plan">Payment Plan: </label>
<select name="payment_plan" id='payment_plan'>
<option id='payment_plan' value="" selected="selected"></option>
Finally, if I choose Metlife and Bill from the above, I need to display the switch below.
<label for="min_dp">Is minimum DP required? </label>
<input type="radio" name="yes" value="Yes" />Yes
<input type="radio" name="no" value="No" />No
else does not display the radio button. In jQuery, this is very difficult to do. Can someone point me in the right direction
source
share