Change Text Color of Select Tag Option using JavaScript

In this tutorial we will learn how to Change Text Color of Select Tag Option using JavaScript. HTML onchange event, HTML Dom value property and HTML DOM style Property is used for this purpose.

HTML Code

HTML Code is given below, in this code we have a select tag with onchange event which will execute a JavaScript function to change the text color of the option of select tag.

<select name="color" id='color' onchange="changeColor(this)">
<option value="red">Red</option>    
<option value="yellow">Yellow</option>    
<option value="blue">Blue</option>    
<option value="green">Green</option>    
</select> 

JavaScript Code

Take a look at the JavaScript code, the HTML onchange event, HTML Dom value property and HTML Dom style property are used in this code.

Main function changeColor() is executed when the select tag value is changed.

<script>
function changeColor(e)
{
    var color = e.value;
    e.style.color=color;
}
</script>

HTML onchange Event

HTML onchange Event occurs when the value of an element is changed.

HTML Dom value property

HTML Dom value property sets or returns the value of the selected option in select tag.

HTML Dom style property

HTML Dom style property is used to get or set a specific CSS style of an element.

In this example it will change the text color of the options of select tag.

Demo

Video Tutorial

Watch video tutorial on Change Text Color of Select Tag Option using JavaScript.

Change font-size using JavaScript Get Font Size of any Tag using JavaScript Change Position of HTML Element using JavaScript How to Change Image on Hover with JavaScript How to Disable Button by Class Name in JavaScript How To Change Image Size with JavaScript How to change Image opacity with JavaScript How to Change image src on click with JavaScript How to get the lang attribute value in JavaScript How to Get attribute Value using JavaScript How To Check if Attribute Exists or not with JavaScript How To Count number of links on Page with JavaScript How To Scroll Page to Bottom using JavaScript How To Detect Shift Key Press with JavaScript Change Text Color On Hover with JavaScript Hide and Show div using JavaScript Get Button text with JavaScript Get textarea value with JavaScript Get table row Height with JavaScript Auto Increase width of input field with JavaScript Set Textarea maxLength with JavaScript Set Textarea Value with JavaScript JavaScript Count list items JavaScript set input field value Count Button Clicks with JavaScript Scroll Page to the Top on Click with JavaScript