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're right. Some browsers just won't let you hide option elements. You'll likely need to remove them.
option
Although perhaps a better (or at least an alternate) possibility would be to disable them.
$(".wrapper1").prop('disbled', true);