Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.