check if dropdown option is selected jquery code example
Example: jquery check if select option is selected
$(document).ready(function(){
$(".yes").hide();
$(".no").hide();
$("#existing-subscriber").change(function(){
if ( $(this).val() == "Yes" ) {
$(".yes").show();
$(".no").hide();
}
if( $(this).val() == "No" ) {
$(".no").show();
$(".yes").hide();
}
});
});