I wonder, is it possible to show “Select one” by default as selected option but hide from options list when user clicks to open select menu? I mean, something like placeholderfor text input field. Is there anyway to do it with js or something else? Thanks in advance
UPDATE
Lets say we have select menu
<select>
<option value"">Select one...</option>
<option value"1">Option 1 </option>
...
</select>
What i’m gonna do is, remove <option value"">Select one...</option> from options list when user opens menu, and return back to default state when user closes menu.
Maybe like this:
OPTIONwith custom tagrole="placeholder"must placed first insideSELECTto work properly.