I have a standard HTML select dropdown
<select id="day" name="day">
<option value="0">All</option>
<option value="1">Mon</option>
<option value="2">Tue</option>
<option value="3">Wed</option>
<option value="4">Thu</option>
<option value="5">Fri</option>
</select>
But in some cases, I want to make some options that cannot be clicked, for example. the text is slightly faded if possible, and then nothing will happen if the text / value is selected.
Does anyone know how?
I am writing my page in PHP.
source
share