This code is working fine if ($(this).val() == "Spine") but if ($(this).val() == "Spine"||"Brian") then the selection menu closes then opens again when the selection for "optionbodyRegion" == "" What am I doing wrong?
$("#optionbodyRegion").change(function(){
if ($(this).val() == "Spine"||"Brain") {
document.getElementById('optioncontrast').options[0]=new Option("Select", "", false, false)
document.getElementById('optioncontrast').options[1]=new Option("With", "With", false, false)
document.getElementById('optioncontrast').options[2]=new Option("Without", "Without", false, false)
document.getElementById('optioncontrast').options[3]=new Option("With and Without", "With and Without", false, false)
$("#contrast").slideDown("fast"); //Slide Down Effect
} else {
if ($(this).val() == "" ) {
$("#contrast").slideUp("fast"); //Slide Up Effect
}
}
});


if x equals a or bin most programming languages you need to be explicit and sayif x equals a or x equals b– Matt Burland Nov 16 '12 at 18:10