I\'m trying to hide a few options in a dropdown box using .hide(). This works perfectly fine in firefox and chrome, but it doesn\'t work in IE and Safari. My original code i
You have to remove the option elements.. hiding them with display:none is not supported in many browsers.
option
display:none
HIDE
var elems = $(".wrapper1").remove();
SHOW
$('#candy').append(elems);