Skip to content

Instantly share code, notes, and snippets.

@ccurtin
Last active October 7, 2016 18:00
Show Gist options
  • Select an option

  • Save ccurtin/008c761c76bd262e733b to your computer and use it in GitHub Desktop.

Select an option

Save ccurtin/008c761c76bd262e733b to your computer and use it in GitHub Desktop.
Select Option Menu Placeholder Color
$(".select select" ).change(function() {
	$(".select select").css('color','#000');
});
<div class="select">
            <select>
                <option value="" disabled selected>Looking For...</option>
                <option class="nms" value="">Office Space</option>
                <option class="nms" value="">Warehouse Space</option>
                <option class="nms" value="">Manufacturing Space</option>
                <option class="nms" value="">Retail Space</option>
                <option class="nms" value="">Others</option>
            </select>
            </div>
select{ 
    color:#A9A9A9;
}
.select option {color:#A9A9A9;}
.select option.nms{
    color:#000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment