I have 2 radio button groups: One for selection of "operating mode" of generators and the other for selection of "type" viz, new or existing generator. Based on the user selections in these two groups I need to show corresponding divs and hide the rest.
Here it is: http://jsfiddle.net/Deepa/M74Lc/23/. I tried many ways to impart specificity to the selectors but does not seem to work correctly. The control skips to the last option all the time.
$("#existing").click(function(){
if ($(".operatingMode").val("parallel")){
$("#Opt1").show();
$("#Opt2").hide();
$("#Opt3").hide();
$("#Opt4").hide();
$("#Opt5").hide();
$("#Opt6").hide();
$("#Opt7").hide();
$("#Opt8").hide();
}
if ($(".operatingMode").val("inadvertent")){
...
}
//Similarly,
$("#newOnly").click(function(){
if ($(".operatingMode").val("parallel")){
$("#Opt1").hide();
$("#Opt2").show();
$("#Opt3").hide();
$("#Opt4").hide();
$("#Opt5").hide();
$("#Opt6").hide();
$("#Opt7").hide();
$("#Opt8").hide();
}
if ($(".operatingMode").val("inadvertent")){
...
}
Can anybody please help me find a solution to this? I would highly appreciate any help with this. Thanks a lot in advance!
Deepa