Change Background Color of Dropdown with Dropdown using JavaScript

In this tutorial we will see how to Change Background Color of Dropdown with Dropdown using JavaScript. HTML DOM style Property can be used for this purpose.

HTML Code

HTML code is given below, in this code we have select tag with four options.

onchange event is used in select tag to execute a JavaScript function.

JavaScript this keyword is used inside this function.

<select name="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

JavaScript Code is given, in this code we have used HTML DOM style Property to change background color of dropdown.

changeColor() function will be executed when option of dropdown is changed. The term event is used for the JavaScript this which refers to the dropdown tag.

Variable named color is used to store value of dropdown.

.style.backgroundColor is used to change background color of dropdown.

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

Demo

Video Tutorial

Watch our video tutorial on Change Background Color of Dropdown with Dropdown 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