I\'ve realized that Chrome, it seems, will not allow me to hide in a . Firefox will.
I need to hide the
// Simplest way var originalContent = $('select').html(); $('select').change(function() { $('select').html(originalContent); //Restore Original Content $('select option[myfilter=1]').remove(); // Filter my options });