Change Background Color using Dropdown menu with JavaScript

In this tutorial we will learn how to Change Background Color using Dropdown menu with JavaScript. HTML onchange event, value property, getElementsByTagName() method, .style property and backgroundColor property is used for this purpose.

HTML Code

HTML Code is given below, in this code we have a select tag with four options for four different colors. onchange event is used in the select tag to trigger the user defined changeColor() function.

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

JavaScript Code

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

onchange event occurs when the value of an element is changed.

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

As soon as the option of select tag is changed, a change event will occur and it will trigger the changeColor() JavaScript function.

Inside the function this keyword is used to target the select tag and getElementsByTagName() is used to target the HTML body tag to change it's background color.

.style and .backgroundColor properties are used to change color of body tag.

<script>
function changeColor(event)
{
    var color = event.value;
    document.getElementsByTagName('BODY')[0].style.backgroundColor=color;
}
</script>

Demo

Video Tutorial

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