I would like to know how to disable multiple options by value. I know I can do this by:
<script>
$('option[value=1],option[value=2]...').prop('disabled', true);
</script>
but I have about 100+ values and there is no particular pattern for the values.
What is the shortest way to do this, if there is?