I have looked around for a while now and could not find anything. The thing I want to do is to have a dropdown menu and have a default title on it, but when you press the option it will change it to that (which it already does). I have this basic code here:
<select>
<option>Choose Color</option>
<option value="red">Option 1</option>
<option value="green">Option 2</option>
<option value="blue">Option 3</option>
</select>
So here I have 4 options. However I only want 3 (because at the moment "Choose Color" is an option which I do not want) and I want the "Choose Color" just to be a title for if nothing is selected (or default). - Thanks