I was wondering if i could get some help with filtering a select list using an input box via jquery.
Here\'s what my js looks like, but it doesnt seem to work. I\'m gues
Try disabling instead of hiding.
$(this).attr('disabled', 'disabled');
Another thing you could do is delete the option from the DOM altogether.