最佳答案
$('#mySelectBox option').each(function() {
if ($(this).isChecked())
alert('this option is selected');
else
alert('this is not');
});
Apparently, the isChecked
doesn't work. SO my question is what is the proper way to do this?
Thanks.