I\'m trying to hide some options from a drop down. JQuery\'s .hide() and .show() work great in Firefox and Chrome, but no luck in IE.
.hide()
.show()
Any g
Just to mention that IE11 navigator.appName returns 'Netscape' :) So taking it into consideration:
$("select option[value='your_option_value']").wrap((navigator.appName == 'Microsoft Internet Explorer' || navigator.appName == 'Netscape') ? '' : null).hide();