I've a dropdown (multiple select). I choose a few values, they are highlighted correctly, but jQuery doesn't recognize them as selected. this works in firefox and chrome, doesn't work in IE. this is the code
$("#myBox" +" option").each(function()
{
if ($(this).attr("selected") == true)
{
// do something
}
}