There is probably a very simple solution to this but my jQuery skills are not yet up to much. I am using the below to show and hide a div based on the valus on a dropdown. I would like to adapt it so both "No" and "" will work. How do i achive this?
Thanks in advance
$('#q1').change(function(){
 if ($(this).val() == "No") {
 $('#divv').show();
 } else {
 $('#divv').hide();
 }
 });
 
     
     
     
     
     
     
    